Skip to content

Commit

Permalink
cpproj: also copy testsuite/include if it's there
Browse files Browse the repository at this point in the history
  • Loading branch information
obiltschnig committed Jun 28, 2021
1 parent a5b0bb7 commit 05660c7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions release/script/cpproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ if [ -d ${src}/testsuite ] ; then
mkdir -p ${dst}/testsuite
mkdir -p ${dst}/testsuite/src

if [ -d ${src}/testsuite/include ] ; then
mkdir -p ${dst}/testsuite/include
cp -R ${src}/testsuite/include/* ${dst}/testsuite/include >/dev/null 2>&1
fi

if [ -d ${src}/testsuite/data ] ; then
mkdir -p ${dst}/testsuite/data
cp -R ${src}/testsuite/data/* ${dst}/testsuite/data >/dev/null 2>&1
Expand Down

0 comments on commit 05660c7

Please sign in to comment.