-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
server: tooling minor update (#5988)
- Loading branch information
Showing
8 changed files
with
34 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
@call "%~dp0\..\bootstrap\python" -m hooks.install %* | ||
@pause | ||
@echo off | ||
set /p choice=Do you want to install TGUI hooks (requires Node.js)? (Y/N): | ||
|
||
if /i "%choice%"=="Y" ( | ||
@echo off | ||
rem Copyright (c) 2020 Aleksej Komarov | ||
rem SPDX-License-Identifier: MIT | ||
call powershell.exe -NoLogo -ExecutionPolicy Bypass -File "%~dp0\..\..\tgui\bin\tgui_.ps1" --install-git-hooks %* | ||
rem Pause if launched in a separate shell unless initiated from powershell | ||
echo %PSModulePath% | findstr %USERPROFILE% >NUL | ||
if %errorlevel% equ 0 ( | ||
pause | ||
exit 0 | ||
) | ||
echo %cmdcmdline% | find /i "/c" | ||
) | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
@call "%~dp0\..\bootstrap\python" -m hooks.install --uninstall %* | ||
git config --unset merge.tgui-merge-bundle.driver | ||
@pause |