- Timestamp:
- May 1, 2018 3:36:59 AM (3 years ago)
- Branches:
- master
- Children:
- 3488db38
- Parents:
- 6b0a102c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
launchers/common/src/main/scala/net/i2p/launchers/OSXDeployment.scala
r6b0a102c r8957c85 147 147 def createFileOrDirectory(file: File, isDir: Boolean = false): Unit = { 148 148 if (file != null) { 149 println(s"createFileOrDirectory(${file},${isDir})")149 //println(s"createFileOrDirectory(${file},${isDir})") 150 150 try { 151 151 // Make sure subject exists if directory … … 191 191 // Write file 192 192 if (!new File(DeployProfile.pathJoin(baseDir, fd.getPath)).exists()) { 193 println(s"copyBaseFileResToDisk(${fd.getPath})")193 //println(s"copyBaseFileResToDisk(${fd.getPath})") 194 194 try { 195 195 copyBaseFileResToDisk(fd.getPath, is) … … 202 202 case Right(dir) => { 203 203 // Ensure directory 204 println(s"Directory(${fd.getPath})")204 //println(s"Directory(${fd.getPath})") 205 205 if (!new File(DeployProfile.pathJoin(baseDir,fd.getPath)).exists()) { 206 206 new File(DeployProfile.pathJoin(baseDir,fd.getPath)).mkdirs()
Note: See TracChangeset
for help on using the changeset viewer.