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:
parent
5ba21844f6
commit
f775c6d7ce
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue