Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit 3f8926c

Browse files
committed
fixing script to use local paths
1 parent 147d8e2 commit 3f8926c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

post_install.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
set ARGS=/A /SE /SW /SA
33
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
44
drivers\dpinst-amd64.exe %ARGS%
5-
drivers\dpinst-amd64.exe %ARGS% /path drivers\x64
5+
drivers\dpinst-amd64.exe %ARGS% /path %CD%\drivers\x64
66
) ELSE IF "%PROCESSOR_ARCHITEW6432%" == "AMD64" (
77
drivers\dpinst-amd64.exe %ARGS%
8-
drivers\dpinst-amd64.exe %ARGS% /path drivers\x64
8+
drivers\dpinst-amd64.exe %ARGS% /path %CD%\drivers\x64
99
) ELSE (
1010
drivers\dpinst-x86.exe %ARGS%
11-
drivers\dpinst-x86.exe %ARGS% /path drivers\x86
11+
drivers\dpinst-x86.exe %ARGS% /path %CD%\drivers\x86
1212
)
1313
exit /b 0

0 commit comments

Comments
 (0)