Rollup merge of #52540 - alexcrichton:tweak-script, r=kennytm

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:
kennytm 2018-07-21 02:59:10 +08:00
commit a9a4f06254
No known key found for this signature in database
GPG Key ID: FEF6C8051D0E013C

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