Skip to content

Commit

Permalink
Add a bit more automation to the package.sh script
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin D. Howard <gavin@gavinhoward.com>
  • Loading branch information
gavinhoward committed Dec 4, 2023
1 parent f1f247c commit 5ee6a05
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -263,3 +263,15 @@ printf '\n'
shasum "$projver.tar.xz"
printf '\n'
shasum "$projver-windows.zip"

mkdir -p "releases/$projver"
mv $projver* "releases/$projver"

# Clean up old Windows stuff.
if [ -d windows ]; then
rm -rf windows
fi

if [ -f vs.zip ]; then
rm -rf vs.zip
fi

0 comments on commit 5ee6a05

Please sign in to comment.