Skip to content

Commit b01f13e

Browse files
committed
Move sbt build scripts to project dir
1 parent 8131150 commit b01f13e

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed

project/VersionUtil.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ object VersionUtil {
44
def executeScript(scriptName: String) = {
55
val cmd =
66
if (System.getProperty("os.name").toLowerCase.contains("windows"))
7-
s"cmd.exe /c scripts\\build\\$scriptName.bat -p"
8-
else s"scripts/build/$scriptName"
7+
s"cmd.exe /c project\\scripts\\build\\$scriptName.bat -p"
8+
else s"project/scripts/build/$scriptName"
99
Process(cmd).lines.head.trim
1010
}
1111

0 commit comments

Comments
 (0)