6 lines
115 B
Plaintext
6 lines
115 B
Plaintext
|
#!/bin/bash
|
||
|
if dcp=$(./dcp $1); then
|
||
|
eval "$dcp up $2"
|
||
|
else
|
||
|
echo no environment file passed ${1:-$ENV_FILE}
|
||
|
fi
|