We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cafe0c commit d01e596Copy full SHA for d01e596
scripts/build_sandbox.sh
@@ -14,6 +14,11 @@ branch=$(echo "$branch" | sed 's/[^a-zA-Z0-9]//g')
14
branch="${branch,,}"
15
apply="${APPLY:-false}"
16
17
+if [ ${#branch} -gt 7 ]; then
18
+ echo "Error: your workspace name '$branch' is longer than 7 characters, please start again and choose a workspace less than 7 characters."
19
+ exit 1
20
+fi
21
+
22
# Forbidden branches
23
forbidden_workspaces=("main" "prod" "pre-prod" "ndr-test" "ndr-dev" "preprod" "ndrtest" "ndrdev", "dev", "test")
24
0 commit comments