diff --git a/scripts/snap-pac b/scripts/snap-pac index 84ee755..a287377 100755 --- a/scripts/snap-pac +++ b/scripts/snap-pac @@ -90,16 +90,16 @@ for CONFIG in $SNAPPER_CONFIGS; do if [[ "$pre_or_post" == "pre" ]]; then $snapper_cmd --description "$PACMAN_PRE_DESCRIPTION" --print-number > "$prefile" echo -n "$(< "$prefile") " + echo "✓" elif [[ -f $prefile ]]; then postnum=$($snapper_cmd --description "$PACMAN_POST_DESCRIPTION" --print-number --pre-number "$(< "$prefile")") echo -n "$postnum " + echo "✓" rm "$prefile" else echo -e "$WARNINGMSG $prefile does not exist, so no post snapshot will be taken. If you are initially installing snap-pac, this is normal." fi - echo "✓" - else echo "N/A"