diff --git a/scripts/TouchinBuild/commands/BaseBackupCommand/RestoreBackupCommand.py b/scripts/TouchinBuild/commands/BaseBackupCommand/RestoreBackupCommand.py index 08bddf5..a169020 100644 --- a/scripts/TouchinBuild/commands/BaseBackupCommand/RestoreBackupCommand.py +++ b/scripts/TouchinBuild/commands/BaseBackupCommand/RestoreBackupCommand.py @@ -35,6 +35,7 @@ class RestoreBackupCommand(BaseBackupCommand): srcAbsPath = os.path.join(self.srcAbsDirPath, fileOrDirName) fileInBackupFolderAbsPath = os.path.join(self.backupDirAbsPath, fileOrDirName) + print fileInBackupFolderAbsPath, srcAbsPath if os.path.isdir(srcAbsPath): shutil.copytree(fileInBackupFolderAbsPath, srcAbsPath) else: