From c2acbdacc424d008c8fec151b43e1d538d121c01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=CC=81=20Moreira?= Date: Thu, 5 Sep 2024 21:21:11 +0100 Subject: [PATCH] fix: reference to remote branch --- misc/fs.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/fs.func b/misc/fs.func index 3df7ef04..5a04c878 100644 --- a/misc/fs.func +++ b/misc/fs.func @@ -15,7 +15,7 @@ fs_cat() { cat "$FILE_PATH"; fi; else if [ "$FS_SOURCE" == "remote" ]; then - curl -s "https://raw.githubusercontent.com/tteck/Proxmox/${PHS_REMOTE_BRANCH}/$1"; + curl -s "https://raw.githubusercontent.com/tteck/Proxmox/${FS_REMOTE_BRANCH}/$1"; fi; msg_error "Something went wrong while attempting to cat file: $1."