Skip to content

Commit

Permalink
Fixing issue creating directory if it already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
ErickOF committed Jun 20, 2024
1 parent b7ea3b0 commit b34b178
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
wget https://github.com/accellera-official/systemc/archive/refs/tags/3.0.0.tar.gz
tar -xzf 3.0.0.tar.gz
cd systemc-3.0.0
mkdir objdir
mkdir -p objdir
cd objdir
export CXX=g++
../configure --prefix=/usr/local/systemc-3.0.0
mkdir examples/
mkdir -p examples/
cp -r ../examples/* examples/
make
make check
Expand Down

0 comments on commit b34b178

Please sign in to comment.