diff --git a/HACKING.md b/HACKING.md index b90c725..84063d6 100644 --- a/HACKING.md +++ b/HACKING.md @@ -69,7 +69,7 @@ it will be running in the foreground, so logs can be inspected and the container stopped via `ctrl+c`. ```sh -sudo ./run-builder.sh fg +sudo test/run-builder.sh fg ``` Verify we can talk to koji hub via the koji command line client: diff --git a/test/integration.sh b/test/integration.sh index 75a1749..60ae31d 100755 --- a/test/integration.sh +++ b/test/integration.sh @@ -59,7 +59,7 @@ greenprint "Testing Koji hub API access" koji --server=http://localhost:8080/kojihub --user=osbuild --password=osbuildpass --authtype=password hello greenprint "Starting koji builder" -sudo ./run-builder.sh start +sudo test/run-builder.sh start greenprint "Creating Koji tag infrastructure" test/make-tags.sh @@ -68,7 +68,7 @@ greenprint "Running integration tests" python3 -m unittest discover -v test/integration/ greenprint "Stopping koji builder" -sudo ./run-builder.sh stop +sudo test/run-builder.sh stop greenprint "Stopping containers" sudo test/run-koji-container.sh stop diff --git a/run-builder.sh b/test/run-builder.sh similarity index 100% rename from run-builder.sh rename to test/run-builder.sh