Skip to content

Commit b34b178

Browse files
committed
Fixing issue creating directory if it already exists
1 parent b7ea3b0 commit b34b178

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
wget https://github.com/accellera-official/systemc/archive/refs/tags/3.0.0.tar.gz
3636
tar -xzf 3.0.0.tar.gz
3737
cd systemc-3.0.0
38-
mkdir objdir
38+
mkdir -p objdir
3939
cd objdir
4040
export CXX=g++
4141
../configure --prefix=/usr/local/systemc-3.0.0
42-
mkdir examples/
42+
mkdir -p examples/
4343
cp -r ../examples/* examples/
4444
make
4545
make check

0 commit comments

Comments
 (0)