diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-05-03 13:37:01 -0500 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-05-03 13:37:01 -0500 |
commit | 64095a2983d8d31cf0702bf8c4553f71ef25ea4f (patch) | |
tree | 6bc6cd80131e52259c1ee0fb9116f23602c6b7a3 /scripts | |
parent | 1c02c378059c064352ebc1f1239fdb122fd3c58d (diff) | |
download | vyatta-op-64095a2983d8d31cf0702bf8c4553f71ef25ea4f.tar.gz vyatta-op-64095a2983d8d31cf0702bf8c4553f71ef25ea4f.zip |
Add back default case for copy, removed too many lines on last commit
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-image-tools.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/vyatta-image-tools.pl b/scripts/vyatta-image-tools.pl index 66731b4..0e0f74a 100755 --- a/scripts/vyatta-image-tools.pl +++ b/scripts/vyatta-image-tools.pl @@ -147,6 +147,8 @@ sub copy { if (y_or_n("This directory exists; would you like to merge?")){ rsync($from, $to); } + } else { + rsync($from, $to); } } |