Skip to content

Commit 4e816c1

Browse files
committed
fix(cli): Call ci/bunny-config-base.sh with correct args on setup
1 parent aff44e5 commit 4e816c1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/cli/ci/bunny-config-base.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ $# -eq 0 ]; then
99
exit 1
1010
fi
1111
if [ $# -eq 1 ]; then
12-
echo "Provide the domain as the first argument"
12+
echo "Provide the domain as the second argument"
1313
exit 1
1414
fi
1515

packages/cli/ci/bunny-prepare-ab.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ $# -eq 0 ]; then
99
exit 1
1010
fi
1111
if [ $# -eq 1 ]; then
12-
echo "Provide the domain as the first argument"
12+
echo "Provide the domain as the second argument"
1313
exit 1
1414
fi
1515

packages/cli/ci/bunny-remove-ab.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ $# -eq 0 ]; then
99
exit 1
1010
fi
1111
if [ $# -eq 1 ]; then
12-
echo "Provide the domain as the first argument"
12+
echo "Provide the domain as the second argument"
1313
exit 1
1414
fi
1515

packages/cli/ci/bunny-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,5 @@ if [ -n "$domain" ]; then
9999
printf "\n\n> Added hostname \"$domain\" to pull zone"
100100

101101
script_dir=$(dirname $0)
102-
bash $script_dir/bunny-config-base.sh $domain
102+
bash $script_dir/bunny-config-base.sh $project_id $domain
103103
fi

0 commit comments

Comments
 (0)