mirror of
https://github.com/archtechx/tenancy-queue-tester.git
synced 2025-12-12 08:04:05 +00:00
11 lines
236 B
Bash
Executable file
11 lines
236 B
Bash
Executable file
#!/bin/sh
|
|
|
|
TENANCY_VERSION=${TENANCY_VERSION:-"dev-master"}
|
|
|
|
set -e
|
|
|
|
(cd cli && ./build.sh)
|
|
|
|
rm -rf src
|
|
|
|
docker run --rm -it -e TENANCY_VERSION="${TENANCY_VERSION}" -v .:/var/www/html tenancy-queue-test-cli bash setup/_tenancy_setup.sh
|