Skip to content

Commit 66eacaf

Browse files
authored
Rollup merge of rust-lang#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.
2 parents db907de + f775c6d commit 66eacaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ci/docker/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ objdir=$root_dir/obj
9999

100100
mkdir -p $HOME/.cargo
101101
mkdir -p $objdir/tmp
102-
mkdir $objdir/cores
102+
mkdir -p $objdir/cores
103103

104104
args=
105105
if [ "$SCCACHE_BUCKET" != "" ]; then

0 commit comments

Comments
 (0)