Remove files from previous electron builds

Ensure we don't keep old files around in the published app.
This commit is contained in:
Martin Fournier 2022-01-23 13:24:14 -05:00
parent 1d118cc8be
commit 73d777ef86

@ -1,5 +1,8 @@
#!/bin/sh
# Clear out any files remaining from old builds
rm -rf .package
mkdir -p .package/dist/src/ThirdParty || true
mkdir -p .package/src/ThirdParty || true
mkdir -p .package/node_modules || true