diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 8b126413..f653b9e2 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -88,7 +88,7 @@ jobs: working-directory: ./BeamableUnreal continue-on-error: true shell: bash - run: bash init_repo.sh + run: bash init_repo.sh skip_waiting # Sets the BEAMPROJ based on the input to this workflow. - name: Set BeamProjOverride.txt diff --git a/init_repo.sh b/init_repo.sh index fcfc19b7..7e94c7aa 100644 --- a/init_repo.sh +++ b/init_repo.sh @@ -79,6 +79,9 @@ if [ ! -d "Microservices/services/DBPlayground" ]; then dotnet beam project deps add MSPlayground DBPlayground fi -echo "Script finished executing." -read \ No newline at end of file +if [ $# -eq 0 ] # No arguments supplied + then + echo "Script finished executing, press any key to exit" + read +fi \ No newline at end of file