Commit b9fbfe41 authored by Brendan Melville's avatar Brendan Melville

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

exist.
parent 6259d336
#!/bin/bash
LOGDIR=log
mkdir $LOGDIR
if [[ ! -d $LOGDIR ]]; then
mkdir $LOGDIR
fi
KUBECTL=`which kubectl`
if [[ -z $KUBECTL ]] ; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment