Skip to content

Commit

Permalink
saner
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas committed Jan 16, 2025
1 parent 848ed94 commit 8b6d2e4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/repo_linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,14 @@ jobs:
find ".github/workflows" -type f -name "*ml" -exec actionlint {} \;
continue-on-error: true

- name: Blob Check
run: |
#Presets
set +x ; set +e
#--------------#
sed 's|https://github.com/pkgforge/soarpkgs/blob/main/packages|https://raw.githubusercontent.com/pkgforge/soarpkgs/refs/heads/main/packages|g' -i "${GITHUB_WORKSPACE}/main/SBUILD_LIST.json"
continue-on-error: true

- name: Shellcheck
run: |
#Presets
Expand Down
3 changes: 2 additions & 1 deletion scripts/runner/builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
sbuild_builder()
{
##Version
SBB_VERSION="0.1.0" && echo -e "[+] SBUILD Builder Version: ${SBB_VERSION}" ; unset SBB_VERSION
SBB_VERSION="0.1.1" && echo -e "[+] SBUILD Builder Version: ${SBB_VERSION}" ; unset SBB_VERSION
##Enable Debug
if [ "${DEBUG}" = "1" ] || [ "${DEBUG}" = "ON" ]; then
set -x
Expand Down Expand Up @@ -196,6 +196,7 @@ sbuild_builder()
#Get URlS
curl -qfsSL "https://raw.githubusercontent.com/pkgforge/pkgcache/refs/heads/main/SBUILD_LIST.json" -o "${SYSTMP}/pkgforge/SBUILD_LIST.json"
jq -r '.[] | select(._disabled == false) | .build_script' "${SYSTMP}/pkgforge/SBUILD_LIST.json" | sort -u -o "${SYSTMP}/pkgforge/SBUILD_URLS"
sed 's|https://github.com/pkgforge/soarpkgs/blob/main/packages|https://raw.githubusercontent.com/pkgforge/soarpkgs/refs/heads/main/packages|g' -i "${SYSTMP}/pkgforge/SBUILD_URLS"
fi
#Build
i=0; until pushd "$(${TMPDIRS})" >/dev/null 2>&1 || [ $((i+=1)) -gt 3 ]; do :; done
Expand Down

0 comments on commit 8b6d2e4

Please sign in to comment.