Skip to content
This repository was archived by the owner on Aug 27, 2023. It is now read-only.

Commit 20bb027

Browse files
committed
fixes for fetching files from github releases
1 parent d61d551 commit 20bb027

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

app-maker-builder

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
mkdir -p ReleaseAssets
22
if ! [ -f ReleaseAssets/app-maker-builder ]; then
3-
APP_MAKER_VERSION="0.9"
3+
APP_MAKER_VERSION="0.9.0"
44
echo "Downloading $APP_MAKER_VERSION"
5-
curl -o ReleaseAssets/app-maker-builder "https://github.com/App-Maker-Software/AppMakerProfessional/releases/download/$APP_MAKER_VERSION/app-maker-builder"
5+
curl -o ReleaseAssets/app-maker-builder -Lo- "https://github.com/App-Maker-Software/AppMakerProfessional/releases/download/$APP_MAKER_VERSION/app-maker-builder"
6+
chmod +x ReleaseAssets/app-maker-builder
67
fi
78
./ReleaseAssets/app-maker-builder $1 $2 $3 $4 $5 $6 $7 $8 $9

src/Core/plugin_manifest.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ local appMakerCoreImplementation = {
4545
xcFrameworks = {
4646
{
4747
active = flags.PROD and (not flags.STAGING) and (not flags.APPSTORE),
48-
url = getXCFrameworkURL("AppMakerCore.xcframework"),
48+
url = getXCFrameworkURL("AppMakerCore.xcframework.zip"),
4949
},
5050
{
5151
active = flags.STAGING,
@@ -80,7 +80,7 @@ local appMakerCompanionCoreImplementation = {
8080
xcFrameworks = {
8181
{
8282
active = flags.PROD and (not flags.STAGING) and (not flags.APPSTORE),
83-
url = getXCFrameworkURL("AppMakerCompanionCore.xcframework"),
83+
url = getXCFrameworkURL("AppMakerCompanionCore.xcframework.zip"),
8484
},
8585
{
8686
active = flags.STAGING,

0 commit comments

Comments
 (0)