Update URL and download
This commit is contained in:
+5
-5
@@ -1,9 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Gitea repository
|
||||
REPO="bubble-package-manager/bpm-utils"
|
||||
# Github repository
|
||||
REPO="EnumeratedDev/bpm-utils"
|
||||
|
||||
# Get version from tag name using Gitea Rest API
|
||||
VERSION=$(curl -s -L https://git.enumerated.dev/api/v1/repos/$REPO/tags/ | jq -r '.[0]'.name)
|
||||
# Get tag name using Github Rest API
|
||||
TAG_NAME=$(curl -s -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/repos/"$REPO"/tags | jq -r '.[0].name')
|
||||
|
||||
echo "$VERSION"
|
||||
echo "$TAG_NAME"
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
name: bpm-utils
|
||||
description: Package utilities for the Bubble Package Manager
|
||||
version: 6.0.0
|
||||
revision: 2
|
||||
url: https://gitlab.com/bubble-package-manager/bpm-utils
|
||||
revision: 3
|
||||
url: https://github.com/EnumeratedDev/bpm-utils
|
||||
license: MIT
|
||||
architecture: any
|
||||
keep: ["etc/bpm-utils/"]
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
||||
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
||||
|
||||
REPO="https://gitlab.com/bubble-package-manager/bpm-utils.git"
|
||||
REPO="https://github.com/EnumeratedDev/bpm-utils.git"
|
||||
FILENAME="${DOWNLOAD##*/}"
|
||||
|
||||
# The prepare function is executed in the root of the temp directory
|
||||
|
||||
Reference in New Issue
Block a user