Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Add gui to the build process #17

Merged
merged 5 commits into from
Jun 16, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Include gui build in run configs and makefile
  • Loading branch information
hlxid committed Jun 14, 2019
commit 55a476b0cbbeda1d191a2916795dc7902818faa5

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,21 @@
advanced_run:
sbt clean
sbt compile
sbt gui
sbt fetch
sbt reload
sbt version
sbt package copy

simple_run:
sbt compile
sbt gui
sbt package copy

bootstrap_deploy:
sbt compile
sbt clean
sbt compile
sbt gui
sbt package copy
sbt bs "project bootstrapProject" assembly
sbt deploy
Expand Down