From 6cf587eec24457813df0b5df16f46fa1c94c47c5 Mon Sep 17 00:00:00 2001 From: Maciej Krok Date: Sat, 8 Oct 2016 15:06:02 +0200 Subject: [PATCH] trsync fix --- scripts/trsync | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/trsync b/scripts/trsync index 5305885..1d7c09a 100755 --- a/scripts/trsync +++ b/scripts/trsync @@ -1,7 +1,7 @@ #!/bin/bash if [ $# -eq 2 ]; then - time rsync -vazh --progress --partial $@ + time rsync -vazh --progress --partial "$@" else - time rsync $@ -fi \ No newline at end of file + time rsync "$@" +fi