From df25fd3c973f0f9445efba361680f89af2b63a83 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Mon, 2 Oct 2006 14:13:11 +0000 Subject: contrib/scripts/stage-manager: use 'mv' instead of 'cp' --- contrib/scripts/stage-manager | 4 ++-- 1 file 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: -- cgit 1.2.3-korg