Skip to content

Commit

Permalink
Rollup merge of rust-lang#52540 - alexcrichton:tweak-script, r=kennytm
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kennytm committed Jul 20, 2018
2 parents 863ed13 + f775c6d commit a9a4f06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ci/docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a9a4f06

Please sign in to comment.