We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9a253 commit 3a8ae3cCopy full SHA for 3a8ae3c
.ci/run.cmd
@@ -1,5 +1,5 @@
1
@echo off
2
-PATH=C:\Windows\system32;C:\Perl64\bin;C:\msys64\usr\bin
+PATH=C:\Windows\system32;C:\Perl64\bin;C:\Program Files\Git\cmd
3
4
IF "%ARCH%"=="" SET ARCH=X86
5
IF "%ARCH%"=="x86" SET ARCH=X86
src/tools/msvc/Solution.pm
@@ -510,7 +510,7 @@ EOF
510
# If there is .git rewrite file whenever gitlog succeeds
511
if ( -d ".git" ) {
512
my $cmd = "git log -1 --format='%h'";
513
- open P,"$cmd |" || confess "Could not open: $cmd\n";;
+ open P,"$cmd |" || confess "Could not open: $cmd\n";
514
my $commit_id = <P>;
515
chomp($commit_id);
516
if (close(P)) {
0 commit comments