Skip to content

Commit

Permalink
install.bat: specify install dir
Browse files Browse the repository at this point in the history
  • Loading branch information
derrickstolee committed Nov 15, 2021
1 parent 0a80e96 commit 416e3d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Run functional tests
shell: cmd
run: |
SET PATH=C:\Program Files\GVFS;%PATH%
SET PATH=C:\Program Files\VFS for Git;%PATH%
SET GIT_TRACE2_PERF=C:\temp\git-trace2.log
ft\GVFS.FunctionalTests.exe /result:TestResult.xml --ci
Expand Down
2 changes: 1 addition & 1 deletion GVFS/GVFS.Installers/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ ECHO Installing Git for Windows...
%GIT_INSTALLER% /LOG="%LOGDIR%\git.log" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /ALLOWDOWNGRADE=1

ECHO Installing VFS for Git...
%GVFS_INSTALLER% /LOG="%LOGDIR%\gvfs.log" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART
%GVFS_INSTALLER% /LOG="%LOGDIR%\gvfs.log" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /DIR="C:\Program Files\VFS for Git"
2 changes: 1 addition & 1 deletion scripts/RunFunctionalTests.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ IF "%1"=="" (SET "CONFIGURATION=Debug") ELSE (SET "CONFIGURATION=%1")

REM Ensure GVFS installation is on the PATH for the Functional Tests to find
SETLOCAL
SET PATH=C:\Program Files\GVFS;C:\Program Files\Git\cmd;%PATH%
SET PATH=C:\Program Files\VFS for Git\;C:\Program Files\GVFS;C:\Program Files\Git\cmd;%PATH%

ECHO PATH = %PATH%

Expand Down

0 comments on commit 416e3d3

Please sign in to comment.