aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--project/plugins.sbt2
-rw-r--r--src/main/scala/xyz/driver/core/file.scala3
2 files changed, 2 insertions, 3 deletions
diff --git a/project/plugins.sbt b/project/plugins.sbt
index d0ea0fc..fe44c40 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -1,4 +1,4 @@
resolvers += "releases" at "https://drivergrp.jfrog.io/drivergrp/releases"
credentials += Credentials("Artifactory Realm", "drivergrp.jfrog.io", "sbt-publisher", "ANC-d8X-Whm-USS")
-addSbtPlugin("xyz.driver" % "sbt-settings" % "0.5.39")
+addSbtPlugin("xyz.driver" % "sbt-settings" % "0.5.43")
diff --git a/src/main/scala/xyz/driver/core/file.scala b/src/main/scala/xyz/driver/core/file.scala
index 9a60653..93715d0 100644
--- a/src/main/scala/xyz/driver/core/file.scala
+++ b/src/main/scala/xyz/driver/core/file.scala
@@ -124,8 +124,7 @@ object file {
def download(filePath: Path): OptionT[Future, File] =
OptionT.optionT(Future {
- val path = java.net.URLDecoder.decode(filePath.toString, "UTF-8")
- Option(new File(path)).filter(file => file.exists() && file.isFile)
+ Option(new File(filePath.toString)).filter(file => file.exists() && file.isFile)
})
def delete(filePath: Path): Future[Unit] = Future {