summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2012-05-10 02:10:35 +0000
committerroot <root@vm-staticweb.spline.inf.fu-berlin.de>2012-05-10 02:10:35 +0000
commit8fd7f39dfc60fa3bf8d34bb6475939edc795fd66 (patch)
tree305fda51398384f5c5b1e53f2d0325911f3bd3dd
parent5f589cbec1655ec1b6c5f6a4f488aa095a738ebd (diff)
downloadcomics-8fd7f39dfc60fa3bf8d34bb6475939edc795fd66.tar.gz
comics-8fd7f39dfc60fa3bf8d34bb6475939edc795fd66.tar.bz2
comics-8fd7f39dfc60fa3bf8d34bb6475939edc795fd66.zip
bin/comics: fix type
-rwxr-xr-xbin/comics/calvin2
-rwxr-xr-xbin/comics/garfield2
-rwxr-xr-xbin/comics/snoopy2
3 files changed, 3 insertions, 3 deletions
diff --git a/bin/comics/calvin b/bin/comics/calvin
index e88ce87..b611c9f 100755
--- a/bin/comics/calvin
+++ b/bin/comics/calvin
@@ -19,7 +19,7 @@ echo
wget ${wget_args} "$nomen" -O "$newn"
-if [ -e "${tmp}/$newn}" ]; then
+if [ -e "${tmp}/${newn}" ]; then
mv "${tmp}/${newn}" "${image_dir}/$newn"
rm -f "${comic_dir}/latest.gif"
ln -s "${image_offset}/$newn" "${comic_dir}/latest.gif"
diff --git a/bin/comics/garfield b/bin/comics/garfield
index 5707d04..66a05e1 100755
--- a/bin/comics/garfield
+++ b/bin/comics/garfield
@@ -19,7 +19,7 @@ echo
wget ${wget_args} "$nomen" -O "$newn"
-if [ -e "${tmp}/$newn}" ]; then
+if [ -e "${tmp}/${newn}" ]; then
mv "${tmp}/${newn}" "${image_dir}/$newn"
rm -f "${comic_dir}/latest.gif"
ln -s "${image_offset}/$newn" "${comic_dir}/latest.gif"
diff --git a/bin/comics/snoopy b/bin/comics/snoopy
index c4f8f78..18b6455 100755
--- a/bin/comics/snoopy
+++ b/bin/comics/snoopy
@@ -19,7 +19,7 @@ echo
wget ${wget_args} "$nomen" -O "$newn"
-if [ -e "${tmp}/$newn}" ]; then
+if [ -e "${tmp}/${newn}" ]; then
mv "${tmp}/${newn}" "${image_dir}/$newn"
rm -f "${comic_dir}/latest.gif"
ln -s "${image_offset}/$newn" "${comic_dir}/latest.gif"