Skip to content

Commit

Permalink
added TODO
Browse files Browse the repository at this point in the history
changed INNO script output name
  • Loading branch information
jendakol committed Feb 17, 2019
1 parent 5c5c2a5 commit a7439bb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions app/lib/commands/BackupCommandExecutor.scala
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,15 @@ class BackupCommandExecutor @Inject()(bsDao: BackupSetsDao,
}
}

// TODO: corner case - what to do with files from other platforms??
// private def isOtherPlatformFile(f: FileTreeNode): Boolean = {
// if (SystemUtils.IS_OS_WINDOWS) {
// f.path.headOption.contains('/')
// } else if (SystemUtils.IS_OS_UNIX) {
// f.path.headOption.exists(_ != '/')
// } else sys.error("Unsupported platform")
// }

private def updateBackupSetFilesList(bsId: Long, paths: Seq[String]): Result[Unit] = {
val normalized = normalizePaths(paths)

Expand Down
2 changes: 1 addition & 1 deletion windeploy/rbackup-client.iss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ AppPublisher={#MyAppPublisher}
DefaultDirName={pf}\RBackupClient
DefaultGroupName={#MyAppName}
DisableProgramGroupPage=yes
OutputBaseFilename=rbackup-client-setup
OutputBaseFilename=rbackup-client-setup-{#MyAppVersion}
Compression=lzma
SolidCompression=yes
MinVersion=0,5.01sp3
Expand Down

0 comments on commit a7439bb

Please sign in to comment.