From 9fced79888dad74e7164837eed7f9e2bb9830d1c Mon Sep 17 00:00:00 2001 From: Faerbit Date: Sun, 15 Mar 2015 22:01:27 +0100 Subject: [PATCH] Change the filename of the compiled package. --- package.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.sh b/package.sh index e80f9fe..ed6cdf8 100755 --- a/package.sh +++ b/package.sh @@ -28,8 +28,8 @@ rc=$? if [[ $rc == 0 ]] then cd binaries; strip -s *; cd .. - mkdir "MarbleGame_${platform^}" - cp -r binaries data LICENSE.txt "MarbleGame_${platform^}" - zip -r "MarbleGame_${platform^}.zip" "MarbleGame_${platform^}" - rm -rf "MarbleGame_${platform^}" + mkdir "Saxum_${platform^}" + cp -r binaries data LICENSE.txt "Saxum_${platform^}" + zip -r "Saxum_${platform^}.zip" "Saxum_${platform^}" + rm -rf "Saxum_${platform^}" fi