Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSafia Abdalla <safia@microsoft.com>2021-08-06 22:09:42 +0300
committerGitHub <noreply@github.com>2021-08-06 22:09:42 +0300
commita77a440aa277a67e6bde6230402efe21f1b35b49 (patch)
treea039d88810062c13191c0ebe491d4a9477b2c8e4 /.devcontainer
parent6dfac699b8329c6de9df512019cfd30a597d5f65 (diff)
Exit after container creation script (#34945)
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/scripts/container-creation.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/.devcontainer/scripts/container-creation.sh b/.devcontainer/scripts/container-creation.sh
index 7b474d51aa..1bbcd15e98 100644
--- a/.devcontainer/scripts/container-creation.sh
+++ b/.devcontainer/scripts/container-creation.sh
@@ -9,3 +9,6 @@ git submodule update --init --recursive
# Also run the full restore on the repo so that go-to definition
# and other language features will be available in C# files
./restore.sh
+# The container creation script is executed in a new Bash instance
+# so we exit at the end to avoid the creation process lingering.
+exit