Skip to content

Commit

Permalink
msctl: swap spaces and other chars in versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sandain committed May 29, 2019
1 parent 4a27e80 commit e220b81
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions msctl
Original file line number Diff line number Diff line change
Expand Up @@ -832,6 +832,7 @@ getClientVersion() {
$PERL -ne '
$current_version="'$CURRENT_VERSION'";
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
$_ =~ s/[\s#%*+?^\${}()|[\]\\]/-/g;
print;
'
}
Expand Down Expand Up @@ -947,6 +948,7 @@ getServerVersion() {
$PERL -ne '
$current_version="'$CURRENT_VERSION'";
$_ =~ s/\$CURRENT_VERSION/$current_version/g;
$_ =~ s/[\s#%*+?^\${}()|[\]\\]/-/g;
print;
'
}
Expand Down

0 comments on commit e220b81

Please sign in to comment.