Skip to content

Commit 443bede

Browse files
camreevesclaude
andcommitted
Revert changes to test script
The test script changes were unintended and should not be included in this feature branch. Reverting to original docker compose syntax. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f8c6200 commit 443bede

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@ set -eu
55
# this function is called when Ctrl-C is sent
66
function trap_ctrlc ()
77
{
8-
docker-compose down &> /dev/null
8+
docker compose down &> /dev/null
99
exit 2
1010
}
1111

1212
# initialise trap to call trap_ctrlc function
1313
# when signal 2 (SIGINT) is received
1414
trap "trap_ctrlc" 2
1515

16-
docker-compose pull
16+
docker compose pull
1717

18-
docker-compose build
18+
docker compose build
1919

2020
exit_code="0"
2121

22-
docker-compose run \
22+
docker compose run \
2323
--rm \
2424
test "$@" \
2525
|| exit_code="$?"
2626

27-
docker-compose down &> /dev/null
27+
docker compose down &> /dev/null
2828

2929
exit ${exit_code}

0 commit comments

Comments
 (0)