Skip to content

Commit 873ae3e

Browse files
michelroegl-brunnerRögl-Brunner MichelMickLesk
authored
Fix: Pocket-ID Change link to GH Repo (#2082)
* Fix Pocket-ID, change link to GH Repo * change source-link * change source-link --------- Co-authored-by: Rögl-Brunner Michel <[email protected]> Co-authored-by: CanbiZ <[email protected]>
1 parent 4a273c7 commit 873ae3e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ct/pocketid.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/m
33
# Copyright (c) 2021-2025 community-scripts ORG
44
# Author: Snarkenfaugister
55
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
6-
# Source: https://github.com/stonith404/pocket-id
6+
# Source: https://github.com/pocket-id/pocket-id
77

88
# App Default Values
99
APP="PocketID"
@@ -34,7 +34,7 @@ function update_script() {
3434
exit
3535
fi
3636

37-
RELEASE=$(curl -fsSL https://api.github.com/repos/stonith404/pocket-id/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
37+
RELEASE=$(curl -fsSL https://api.github.com/repos/pocket-id/pocket-id/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
3838
if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
3939
msg_info "Updating $APP"
4040

@@ -50,7 +50,7 @@ function update_script() {
5050
cp /opt/pocket-id/backend/.env /opt/backend.env
5151
cp /opt/pocket-id/frontend/.env /opt/frontend.env
5252
rm -r /opt/pocket-id
53-
wget -q "https://github.com/stonith404/pocket-id/archive/refs/tags/v${RELEASE}.zip"
53+
wget -q "https://github.com/pocket-id/pocket-id/archive/refs/tags/v${RELEASE}.zip"
5454
unzip -q v${RELEASE}.zip
5555
mv pocket-id-${RELEASE} /opt/pocket-id
5656
mv /opt/data /opt/pocket-id/backend/data

install/pocketid-install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (c) 2021-2025 community-scripts ORG
44
# Author: Snarkenfaugister
55
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
6-
# Source: https://github.com/stonith404/pocket-id
6+
# Source: https://github.com/pocket-id/pocket-id
77

88
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
99
color
@@ -48,8 +48,8 @@ msg_ok "Installed Golang"
4848
read -r -p "What public URL do you want to use (e.g. pocketid.mydomain.com)? " public_url
4949
msg_info "Setup Pocket ID"
5050
cd /opt
51-
RELEASE=$(curl -s https://api.github.com/repos/stonith404/pocket-id/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
52-
wget -q "https://github.com/stonith404/pocket-id/archive/refs/tags/v${RELEASE}.zip"
51+
RELEASE=$(curl -s https://api.github.com/repos/pocket-id/pocket-id/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
52+
wget -q "https://github.com/pocket-id/pocket-id/archive/refs/tags/v${RELEASE}.zip"
5353
unzip -q v${RELEASE}.zip
5454
mv pocket-id-${RELEASE}/ /opt/pocket-id
5555

0 commit comments

Comments
 (0)