diff --git a/elliebot/ellie-menu.ps1 b/elliebot/ellie-menu.ps1 index 866a6e3..59e869b 100644 --- a/elliebot/ellie-menu.ps1 +++ b/elliebot/ellie-menu.ps1 @@ -87,7 +87,7 @@ if ($release) { Write-Output "Script finished successfully" Write-Output "" Write-Output "If you wish to build the linux or MacOS builds please run" - Write-Output "build.sh in wsl if you are on Windows or in bash (or whatever terminal you use) on linux" + Write-Output "package.sh in wsl if you are on Windows or in bash (or whatever terminal you use) on linux" Write-Output "" Write-Output "If you have any suggestions on how to make this script better please make a suggestion" Write-Output "in our discord @ https://discord.gg/etQdZxSyEH and in the 📚・suggestions channel" diff --git a/elliebot/package.sh b/elliebot/package.sh new file mode 100644 index 0000000..9908e1d --- /dev/null +++ b/elliebot/package.sh @@ -0,0 +1,7 @@ +echo "" +echo "Packing the Linux and MacOS builds" +echo "" +tar cvf 5.1.7-linux-arm64-build.tar elliebot-linux-arm64/* +tar cvf 5.1.7-linux-x64-build.tar elliebot-linux-x64/* +tar cvf 5.1.7-osx-arm64-build.tar elliebot-osx-arm64/* +tar cvf 5.1.7-osx-x64-build.tar elliebot-osx-x64/* \ No newline at end of file