mirror of
https://github.com/FlipsideCrypto/convox.git
synced 2026-02-06 10:56:56 +00:00
9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
set -ex -o pipefail
|
|
|
|
source $(dirname $0)/env.sh
|
|
|
|
if [ "${VERSION}" != "$(convox api get /system | jq -r '.version')" ]; then
|
|
convox rack update "${VERSION}" --wait
|
|
fi
|