summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Southworth <john.southworth@vyatta.com>2011-05-03 13:37:01 -0500
committerJohn Southworth <john.southworth@vyatta.com>2011-05-03 13:37:01 -0500
commit64095a2983d8d31cf0702bf8c4553f71ef25ea4f (patch)
tree6bc6cd80131e52259c1ee0fb9116f23602c6b7a3
parent1c02c378059c064352ebc1f1239fdb122fd3c58d (diff)
downloadvyatta-op-64095a2983d8d31cf0702bf8c4553f71ef25ea4f.tar.gz
vyatta-op-64095a2983d8d31cf0702bf8c4553f71ef25ea4f.zip
Add back default case for copy, removed too many lines on last commit
-rwxr-xr-xscripts/vyatta-image-tools.pl2
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);
}
}