bugs fixed

This commit is contained in:
Alex Kaplan 2015-09-12 20:15:36 -07:00
parent 2d90c76c0d
commit c26555ed9c
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ function cache_download {
} }
while getopts ":u:f" opt; do while getopts "uf" opt; do
case $opt in case $opt in
u) u)
echo "updating cache" echo "updating cache"

View File

@ -10,8 +10,8 @@ onMac() {
filesize() { filesize() {
if onMac; then if onMac; then
stat -f%z $0 stat -f%z $1
else else
stat --printf="%s" $0 stat --printf="%s" $1
fi fi
} }