Skip to content

Commit

Permalink
Fix docker/run.sh script when run locally
Browse files Browse the repository at this point in the history
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
alexcrichton committed Jul 19, 2018
1 parent 5ba2184 commit f775c6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ci/docker/run.sh
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 f775c6d

Please sign in to comment.