0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-02-22 15:25:05 +01:00

Quote shell variable expansions in test-e2e.sh

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
silverwind 2026-02-15 12:10:24 +01:00
parent bbfa948f51
commit 61b75540a5
No known key found for this signature in database
GPG Key ID: 2E62B41C93869443

View File

@ -29,7 +29,7 @@ ELAPSED=0
while ! curl -sf --max-time 5 "$E2E_URL" > /dev/null 2>&1; do
if [ "$ELAPSED" -ge "$MAX_WAIT" ]; then
echo "error: Gitea server at $E2E_URL is not reachable after ${MAX_WAIT}s" >&2
echo "Start Gitea first: $EXECUTABLE" >&2
echo "Start Gitea first: ${EXECUTABLE}" >&2
exit 1
fi
sleep 2
@ -42,7 +42,7 @@ E2E_EMAIL="e2e@test.gitea.io"
E2E_PASSWORD="password"
if ! curl -sf --max-time 5 "$E2E_URL/api/v1/users/$E2E_USER" > /dev/null 2>&1; then
echo "Creating e2e test user..."
if $EXECUTABLE admin user create --username "$E2E_USER" --email "$E2E_EMAIL" --password "$E2E_PASSWORD" --must-change-password=false; then
if "$EXECUTABLE" admin user create --username "$E2E_USER" --email "$E2E_EMAIL" --password "$E2E_PASSWORD" --must-change-password=false; then
echo "User '$E2E_USER' created"
else
echo "error: failed to create user '$E2E_USER'" >&2