Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion launcher/src/main/scala/LauncherMain.scala
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class LauncherProcessor extends Processor {

// uses classloader trick to run
def virtuallyRun(files: Seq[File], args: Seq[String], workingDirectory: File): Unit = {
val cl = new URLClassLoader(files.map(_.toURL).toArray, null)
val cl = new URLClassLoader(files.map(_.toURI.toURL).toArray, null)
call("giter8.Giter8", "run", cl)(classOf[Array[String]], classOf[File])(args.toArray, workingDirectory)
}

Expand Down