Skip to content

Commit 3a8ae3c

Browse files
committed
[ci]: Update env for run.cmd
1 parent ba9a253 commit 3a8ae3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ci/run.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
2-
PATH=C:\Windows\system32;C:\Perl64\bin;C:\msys64\usr\bin
2+
PATH=C:\Windows\system32;C:\Perl64\bin;C:\Program Files\Git\cmd
33

44
IF "%ARCH%"=="" SET ARCH=X86
55
IF "%ARCH%"=="x86" SET ARCH=X86

src/tools/msvc/Solution.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ EOF
510510
# If there is .git rewrite file whenever gitlog succeeds
511511
if ( -d ".git" ) {
512512
my $cmd = "git log -1 --format='%h'";
513-
open P,"$cmd |" || confess "Could not open: $cmd\n";;
513+
open P,"$cmd |" || confess "Could not open: $cmd\n";
514514
my $commit_id = <P>;
515515
chomp($commit_id);
516516
if (close(P)) {

0 commit comments

Comments
 (0)