From 35068270afb118dff1f3f219006cf6fce5c17b3c Mon Sep 17 00:00:00 2001 From: Randall Date: Sat, 27 Aug 2022 14:08:58 -0400 Subject: [PATCH] Removed option for using local source from packaging script, as it is mostly unnecessary and/or broken --- package.sh | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/package.sh b/package.sh index a4183cb..321e960 100755 --- a/package.sh +++ b/package.sh @@ -19,15 +19,7 @@ echo -e '\nThe value entered in this field will only affect the revision number read -r -p "Revision number: " revision if [ "$distro" == "7" ] || [ "$distro" == "8" ] || [ "$distro" == "9" ]; then - echo -e '\nOptions (please enter the number only):' - echo -e '\n1. GitHub Release Tag\n2. Local\n' - read -r -p "Source (for build scripts): " source - - if [ "$source" == "1" ]; then - source='https://github.com/rwinkhart/sshyp/releases/download/v$pkgver/sshyp-$pkgver.tar.xz' - else - source=local://sshyp-"$version".tar.xz - fi + source='https://github.com/rwinkhart/sshyp/releases/download/v$pkgver/sshyp-$pkgver.tar.xz' fi mkdir -p packages