diff options
author | 2023-08-17 13:35:52 -0700 | |
---|---|---|
committer | 2023-08-17 15:35:52 -0500 | |
commit | 1b656233b3c9dc1b90732aa29ea1bf904c2c5f98 (patch) | |
tree | 37d1fa38011a830f92f93e9c45d352218a6aaeff | |
parent | fa6b68a776c5b3cc8167fc042b7d305234ebcff9 (diff) | |
download | astro-1b656233b3c9dc1b90732aa29ea1bf904c2c5f98.tar.gz astro-1b656233b3c9dc1b90732aa29ea1bf904c2c5f98.tar.zst astro-1b656233b3c9dc1b90732aa29ea1bf904c2c5f98.zip |
chore(gitpod): resolve potential globbing and word splitting issue (#8124)
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
-rwxr-xr-x | .gitpod/gitpod-setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitpod/gitpod-setup.sh b/.gitpod/gitpod-setup.sh index 0e739c46d..6186117fe 100755 --- a/.gitpod/gitpod-setup.sh +++ b/.gitpod/gitpod-setup.sh @@ -17,7 +17,7 @@ fi # Wait for VSCode to be ready (port 23000) gp ports await 23000 > /dev/null 2>&1 -echo "Loading example project:" $EXAMPLE_PROJECT +echo "Loading example project: $EXAMPLE_PROJECT" # Go to the requested example project cd "$GITPOD_REPO_ROOT"/examples/"$EXAMPLE_PROJECT" || exit |