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

Move ./ prefix for EXECUTABLE into test-e2e.sh

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
silverwind 2026-02-15 12:11:39 +01:00
parent 61b75540a5
commit d91a8d886b
No known key found for this signature in database
GPG Key ID: 2E62B41C93869443
2 changed files with 3 additions and 1 deletions

View File

@ -556,7 +556,7 @@ test-mssql-migration: migrations.mssql.test migrations.individual.mssql.test
.PHONY: test-e2e
test-e2e: deps-frontend
@$(NODE_VARS) pnpm exec playwright install --with-deps chromium $(PLAYWRIGHT_FLAGS)
EXECUTABLE=./$(EXECUTABLE) ./tools/test-e2e.sh $(E2E_FLAGS)
EXECUTABLE=$(EXECUTABLE) ./tools/test-e2e.sh $(E2E_FLAGS)
.PHONY: bench-sqlite
bench-sqlite: integrations.sqlite.test generate-ini-sqlite

View File

@ -1,6 +1,8 @@
#!/bin/bash
set -euo pipefail
EXECUTABLE="./${EXECUTABLE}"
# Determine the Gitea server URL, either from E2E_URL env var or from custom/conf/app.ini
if [ -z "${E2E_URL:-}" ]; then
INI_FILE="custom/conf/app.ini"