summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"