Skip to content

Commit

Permalink
add -p so mkdir doesn't fail on retries
Browse files Browse the repository at this point in the history
  • Loading branch information
rem1776 authored Dec 4, 2024
1 parent 7261f5e commit 601b593
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pw_am5_intel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
steps:
- name: Setup source and build directories
run: |
mkdir ${GITHUB_SHA}
mkdir -p ${GITHUB_SHA}
cd ${GITHUB_SHA}
mkdir am5_src
mkdir am5_build
mkdir -p am5_src
mkdir -p am5_build
ln -s /contrib/am5/ci/latest/src/am5_phys am5_src/am5_phys
ln -s /contrib/am5/ci/latest/src/atmos_drivers am5_src/atmos_drivers
ln -s /contrib/am5/ci/latest/src/GFDL_atmos_cubed_sphere am5_src/GFDL_atmos_cubed_sphere
Expand Down Expand Up @@ -53,6 +53,6 @@ jobs:
- name: Create run directory
run: |
cd ${GITHUB_SHA}
mkdir am5_run
mkdir -p am5_run
- name: Launch runscript
run: /contrib/am5/ci/latest/run.sh

0 comments on commit 601b593

Please sign in to comment.