Fix typos

This commit is contained in:
zawz 2020-10-26 11:08:15 +01:00
parent 7ea3b490d6
commit 38e7151b5c
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ do
c) config_path="$OPTARG" ;; c) config_path="$OPTARG" ;;
f) opt_f=y ;; f) opt_f=y ;;
R) opt_R=y ;; R) opt_R=y ;;
\?) echo "Uknown option: $OPTARG" ; usage ; exit 1 ;; *) echo "Unknown option: $OPTARG" >&2 ; usage ; exit 1 ;;
esac esac
done done

View file

@ -79,5 +79,5 @@ package_info() {
printf "Dependencies: %s\n" "$deps" printf "Dependencies: %s\n" "$deps"
printf "Package size: %s\n" "$csize" printf "Package size: %s\n" "$csize"
printf "Installed size: %s\n" "$isize" printf "Installed size: %s\n" "$isize"
printf "" printf "\n"
} }