Skip to content
Snippets Groups Projects
Commit ca64d16a authored by Denny's avatar Denny
Browse files

When a file is downloaded, make it executable. That's neccsary for scripts (e.g. in Shark)

parent 098ae55d
No related branches found
No related tags found
No related merge requests found
......@@ -163,6 +163,8 @@ object Utils extends Logging {
logInfo("Untarring " + filename)
Utils.execute(Seq("tar", "-xf", filename), targetDir)
}
// Make the file executable - That's necessary for scripts
FileUtil.chmod(filename, "a+x")
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment