bootstrap will only create the log directory if it doesn't already

exist.
pull/10/head
Brendan Melville 9 years ago
parent 6259d336e1
commit b9fbfe41ea

@ -1,6 +1,9 @@
#!/bin/bash
LOGDIR=log
if [[ ! -d $LOGDIR ]]; then
mkdir $LOGDIR
fi
KUBECTL=`which kubectl`
if [[ -z $KUBECTL ]] ; then

Loading…
Cancel
Save