From b6d4230de4778b828ad39710d26256bdd12e20c1 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 10 Aug 2019 14:01:26 -0600 Subject: [PATCH] add some TODOs and a missing newline --- usr/share/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr/share/install.sh b/usr/share/install.sh index bd0f96c..4679eb4 100644 --- a/usr/share/install.sh +++ b/usr/share/install.sh @@ -156,6 +156,7 @@ detect_unarchiver() _my_unarchive_out="-d" archive_ext="zip" else + # TODO ping bug report url echo "Developer error: '$my_unarchiver' isn't a supported. The developer made a typo." return 20 fi @@ -241,6 +242,7 @@ t_arch=$(grep $TELEBIT_RELEASE $my_tmp/index.tab | grep $TELEBIT_OS | grep $TELE t_url=$(grep $TELEBIT_RELEASE $my_tmp/index.tab | grep $TELEBIT_OS | grep $TELEBIT_ARCH | head -n 1 | cut -f 8) if [ -z "$t_url" ]; then + # TODO ping bug report url echo "No matching version for '$TELEBIT_RELEASE' for '$TELEBIT_OS' on '$TELEBIT_ARCH'" exit 2 fi @@ -301,5 +303,5 @@ echo "" echo "" echo "Open a new terminal and run the following:" echo "" -printf "\ttelebit init" +printf "\ttelebit init\n" echo ""