Files
dokku/tests/apps/config/post-deploy

10 lines
266 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2013-12-11 21:41:16 +00:00
set -ex;
REMOTE=$1
REPO=$2
2014-12-14 14:45:49 -08:00
# setting config variables with spaces is broken at the moment. ref: 820
# ssh "$REMOTE" config:set "$REPO" CONFTEST=config-test HELLO=\"Hello world\"
dokku config:set "$REPO" CONFTEST=config-test HELLO="Hello world"