Skip to content

Commit 4efbb37

Browse files
committed
ReleaseStage6 bug fixes
1 parent e8677f6 commit 4efbb37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/ReleaseStage6.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ object ReleaseStage6 extends App {
3838
def run(cmdArgs: String*): Unit = run(Process(cmdArgs, longevityDir))
3939

4040
// make sure the oldVersion matches whats in the build
41-
run("grep", "-q", s"""version := "$oldVersion"""", "BuildSettings.scala")
41+
run("grep", "-q", s"""version := "$oldVersion"""", "project/BuildSettings.scala")
4242

4343
// make sure no outstanding changes
4444
run("git diff --exit-code")
@@ -62,10 +62,10 @@ object ReleaseStage6 extends App {
6262
run(
6363
"sed", "-i", "",
6464
"-e", s"""s/version := "$oldVersion"/version := "$newVersion"/""",
65-
"BuildSettings.scala")
65+
"project/BuildSettings.scala")
6666

6767
// commit and push the new version of the build
68-
run("git stage BuildSettings.scala")
68+
run("git stage project/BuildSettings.scala")
6969
run("git", "commit", "-m", s"up build version to $newVersion")
7070
run("git push")
7171

0 commit comments

Comments
 (0)