From b34b178d914406bf06a9e32f252f89d55bbb7cdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erick=20Obreg=C3=B3n=20Fonseca?= Date: Thu, 20 Jun 2024 17:45:57 -0600 Subject: [PATCH] Fixing issue creating directory if it already exists --- .github/workflows/cpp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index 6024688..eb498ea 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -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