diff options
Diffstat (limited to 'blogsend')
-rwxr-xr-x | blogsend | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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." |