aboutsummaryrefslogtreecommitdiff
path: root/blogsend
diff options
context:
space:
mode:
Diffstat (limited to 'blogsend')
-rwxr-xr-xblogsend2
1 files changed, 1 insertions, 1 deletions
diff --git a/blogsend b/blogsend
index 3093c8a..248f044 100755
--- a/blogsend
+++ b/blogsend
@@ -31,7 +31,7 @@ echo "Sending files modified in the past $HOURS hour(s)..."
files=$(find -- * -iname "*.html" -path .tmp -prune -o -mmin -$MINUTES -type f)
for file in $files
do
- scp -r "$file" "$rf/$file";
+ scp "$file" "$rf/$file";
done
echo "Done."