load config if not already loaded
This commit is contained in:
parent
d0b86dbc12
commit
962efa9962
|
@ -1,5 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ -z $_config_loaded ] ; then
|
||||||
|
echo "No config loaded - loading '../config.sh'"
|
||||||
|
. ../config.sh
|
||||||
|
fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if ! command -v yarn ; then
|
if ! command -v yarn ; then
|
||||||
|
|
Reference in New Issue