Skip to content

Commit

Permalink
Amended PATH order in batch files
Browse files Browse the repository at this point in the history
  • Loading branch information
philipabbey committed May 16, 2024
1 parent ac6cf59 commit fb3f2ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion design/run_vscode.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if not exist "%VSCODE_INSTALL%\" (
goto error
)

set PATH=%PATH%;%SCRATCH_SRC%\..\bin
set PATH=%SCRATCH_SRC%\..\bin;%PATH%

"%VSCODE_INSTALL%\Code.exe" "%SCRATCH_SRC%\..\scratch_vhdl.code-workspace"

Expand Down
2 changes: 1 addition & 1 deletion install_extension.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ curl ^
--output %TEMP%\scratch-vhdl-vscode.vsix ^
https://github.com/house-of-abbey/scratch_vhdl/releases/latest/download/scratch-vhdl-vscode.vsix

set PATH=%PATH%;%VSCODE_INSTALL%
set PATH=%VSCODE_INSTALL%;%PATH%

call code --install-extension %TEMP%\scratch-vhdl-vscode.vsix ^
--install-extension hlorenzi.customasm-vscode ^
Expand Down

0 comments on commit fb3f2ee

Please sign in to comment.