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

Commit c61a75d

Browse files
authored
Merge branch 'master' into fixes/1315-using-repository
2 parents b923899 + c034b4f commit c61a75d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.cmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
powershell -ExecutionPolicy Unrestricted scripts\build.ps1 %1
1+
@if "%1" == "" echo Please specify Debug or Release && EXIT /B
2+
powershell -ExecutionPolicy Unrestricted scripts\build.ps1 -Package:$true -Config:%1

install.cmd

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
@set Configuration=%1
2-
@if "%Configuration%" == "" echo Please specify Debug or Release
3-
tools\VsixUtil\vsixutil /install "build\%Configuration%\GitHub.VisualStudio.vsix"
4-
@echo Installed %Configuration% build of GitHub for Visual Studio
1+
@if "%1" == "" echo Please specify Debug or Release && EXIT /B
2+
tools\VsixUtil\vsixutil /install "build\%1\GitHub.VisualStudio.vsix"
3+
@echo Installed %1 build of GitHub for Visual Studio

0 commit comments

Comments
 (0)