Skip to content

Commit

Permalink
Merge pull request #868 from glitch/867-version-string-manipulation
Browse files Browse the repository at this point in the history
Closes #867: Remove dash character replacement in version stringf
  • Loading branch information
mhmerrill authored Jul 7, 2021
2 parents b83c3ba + 768eb4d commit 7488dc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServerConfig.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ module ServerConfig
var H5major: c_uint, H5minor: c_uint, H5micro: c_uint;
H5get_libversion(H5major, H5minor, H5micro);
var cfg = new owned Config();
cfg.arkoudaVersion = (ServerConfig.arkoudaVersion:string).replace("-", ".");
cfg.arkoudaVersion = (ServerConfig.arkoudaVersion:string);
cfg.ZMQVersion = try! "%i.%i.%i".format(Zmajor, Zminor, Zmicro);
cfg.HDF5Version = try! "%i.%i.%i".format(H5major, H5minor, H5micro);
cfg.serverHostname = serverHostname;
Expand Down

0 comments on commit 7488dc7

Please sign in to comment.