Skip to content

Commit

Permalink
add existance check before rm since we now fail on fail...
Browse files Browse the repository at this point in the history
  • Loading branch information
pedohorse committed Feb 3, 2025
1 parent 16ea942 commit b208d5e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dcc_plugins_workspace/build_houdini.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ rsync -arhv --exclude=__pycache__ --exclude="*.pyc" ../src/lifeblood_client $OUT
rsync -arhv --exclude=__pycache__ --exclude="*.pyc" ../src/lifeblood_client $OUT/python3.11libs

pushd $OUT
rm ../houdini.zip
if [ -f ../houdini.zip ]; then
rm ../houdini.zip
fi
zip -r ../houdini.zip . --exclude "*__pycache__/" --exclude "*.pyc" --exclude "*.md"
popd

Expand Down

0 comments on commit b208d5e

Please sign in to comment.