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