Skip to content

Commit

Permalink
Add cleanup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
pierotofy committed Sep 26, 2021
1 parent 369eb51 commit a022ada
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions nodeodm/cleanup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
set -eo pipefail
__dirname=$(cd $(dirname "$0"); pwd -P)
cd "${__dirname}"


# Only execute if TEST_BUILD is not set
if [[ -z ${TEST_BUILD+x} ]]; then
rm -fr external/NodeODM
else
echo "Nothing to do"
fi

0 comments on commit a022ada

Please sign in to comment.