mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 20:19:52 +01:00
10 lines
266 B
Bash
Executable File
10 lines
266 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex;
|
|
|
|
REMOTE=$1
|
|
REPO=$2
|
|
|
|
# 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"
|