Skip to content

Commit

Permalink
localpublish.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
davesmith00000 committed Apr 14, 2024
1 parent 95f1689 commit 7bf801a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion commands.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ addCommandAlias(
)
addCommandAlias(
"crossLocalPublishUltraviolet",
applyCrossCommand(allProjects, "publishLocal")
applyCrossCommand(releaseProjects, "publishLocal")
)
addCommandAlias(
"crossLocalPublishNoClean",
Expand All @@ -188,6 +188,11 @@ addCommandAlias(
).mkString(";", ";", "")
)

addCommandAlias(
"crossTestUltravioletOnlyNoClean",
applyCrossCommand(releaseProjects, "test")
)

addCommandAlias(
"crossCleanAll",
applyCrossToAll("clean")
Expand Down
5 changes: 5 additions & 0 deletions localpublish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

# Run from root.

sbt crossCleanAll crossTestUltravioletOnlyNoClean crossLocalPublishNoClean

0 comments on commit 7bf801a

Please sign in to comment.