Fix docker/run.sh script when run locally

Switch a `mkdir $foo` to `mkdir -p $foo` to handle the case that this script is
being run locally and has previously executed.
This commit is contained in:
Alex Crichton 2018-07-19 07:48:17 -07:00
parent 5ba21844f6
commit f775c6d7ce

View file

@ -99,7 +99,7 @@ objdir=$root_dir/obj
mkdir -p $HOME/.cargo
mkdir -p $objdir/tmp
mkdir $objdir/cores
mkdir -p $objdir/cores
args=
if [ "$SCCACHE_BUCKET" != "" ]; then