Minor tweak to comments

This commit is contained in:
Nathaniel Landau
2015-02-09 08:32:57 -05:00
parent d713705c76
commit 37c17e35a9
3 changed files with 5 additions and 6 deletions

View File

@@ -9,7 +9,7 @@
# of many of my scripts
#
# All of this taken whole-cloth from: https://github.com/kvz/bash3boilerplate
#####################################################################q
#####################################################################
# Translate usage string -> getopts arguments, and set $arg_<flag> defaults
while read line; do

View File

@@ -277,10 +277,10 @@ function skip() {
REPLY=noskip
read -t 5 -n 1 -s -p "${bold}To skip, press ${underline}X${reset}${bold} within 5 seconds.${reset}"
if [[ "$REPLY" =~ ^[Xx]$ ]]; then
echo " Skipping!"
notice " Skipping!"
return 0
else
echo " Continuing..."
notice " Continuing..."
return 1
fi
}