summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcontrib/scripts/stage-manager4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/scripts/stage-manager b/contrib/scripts/stage-manager
index d08e8d8a37..3fed475906 100755
--- a/contrib/scripts/stage-manager
+++ b/contrib/scripts/stage-manager
@@ -83,7 +83,7 @@ if __name__ == "__main__":
if options.copydir:
copypath = os.path.join(options.copydir, path.replace(options.parentdir, '', 1))
mkdirhier(os.path.split(copypath)[0])
- os.system("cp " + path + " " + copypath)
+ os.system("mv " + path + " " + copypath)
found = True
else:
if cache[path]['ts'] != fstamp[stat.ST_MTIME] or cache[path]['size'] != fstamp[stat.ST_SIZE]:
@@ -94,7 +94,7 @@ if __name__ == "__main__":
if options.copydir:
copypath = os.path.join(options.copydir, path.replace(options.parentdir, '', 1))
mkdirhier(os.path.split(copypath)[0])
- os.system("cp " + path + " " + copypath)
+ os.system("mv " + path + " " + copypath)
found = True
if options.update: