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