5 lines
149 B
Bash
Executable file
5 lines
149 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec "$script_dir/deploy/deploy-stack-mvp.sh" "$@"
|