Skip to content

Commit 148607c

Browse files
committed
fix copy paste error
1 parent 31a8aeb commit 148607c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- run: bash ./srcpkgs/openshift-oc/update-oc.sh
2525
- run: bash ./srcpkgs/pet/update-pet.sh
2626
- run: bash ./srcpkgs/rebos/update-rebos.sh
27-
- run: bash ./srcpkgs/rebos/update-river-status.sh
27+
- run: bash ./srcpkgs/river-status/update-river-status.sh
2828
# - run: bash ./srcpkgs/river-bedload/update-river-bedload.sh
2929
- run: bash ./srcpkgs/zen-browser/update-zen.sh
3030
- run: bash ./srcpkgs/wideriver/update-wideriver.sh

srcpkgs/river-status/.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ maintainer="Rickard <@>"
99
license="GPL-3.0-or-later"
1010
homepage="https://github.com/grvn/river-status"
1111
changelog="https://raw.githubusercontent.com/grvn/river-status/refs/heads/main/CHANGELOG"
12-
distfiles="https://github.com/grvn/river-status/archive/refs/tags/v${version}.tar.gz"
12+
distfiles="https://github.com/grvn/river-status/releases/download/v${version}/river-status-v${version}.tgz"
1313
checksum=${SHA256}
1414

1515
post_install() {

srcpkgs/river-status/template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ maintainer="Rickard <@>"
99
license="GPL-3.0-or-later"
1010
homepage="https://github.com/grvn/river-status"
1111
changelog="https://raw.githubusercontent.com/grvn/river-status/refs/heads/main/CHANGELOG"
12-
distfiles="https://github.com/grvn/river-status/archive/refs/tags/v${version}.tar.gz"
12+
distfiles="https://github.com/grvn/river-status/releases/download/v${version}/river-status-v${version}.tgz"
1313
checksum=20a589591f7d243c17267d1af3629982dbc18e95e2cea4ca0ffb915b7f6fed7b
1414

1515
post_install() {

srcpkgs/river-status/update-river-status.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ CURRENT_VERSION=$(grep -E '^version=' ${__dir}/template | cut -d= -f2)
1111
printf "Latest version is: %s\nLatest built version is: %s\n" "${VERSION}" "${CURRENT_VERSION}"
1212
[ "${CURRENT_VERSION}" = "${VERSION}" ] && printf "No new version to release\n" && exit 0
1313

14-
export SHA256=$(curl -L https://github.com/grvn/river-status/releases/download/v${VERSION}/river-status-v${VERSION}.tar.gz.sha256 | cut -d ' ' -f1 )
14+
export SHA256=$(curl -L https://github.com/grvn/river-status/releases/download/v${VERSION}/river-status-v${VERSION}.tgz.sha256 | cut -d ' ' -f1 )
1515
[[ ! ${SHA256} =~ ^[a-z0-9]+$ ]] && printf "got junk instead of sha256\n" && exit 1
1616

1717
envsubst '${SHA256} ${VERSION}' < ${__dir}/.template > ${__dir}/template

0 commit comments

Comments
 (0)