Skip to content

Commit 5ac13a5

Browse files
committed
Turned this idiom into a script
1 parent e2506d7 commit 5ac13a5

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,8 @@ module to PyPI.
5050
## How to update launchable/jar/exe_deploy.jar
5151

5252
```
53-
bazel build //src/main/java/com/launchableinc/ingest/commits:exe_deploy.jar
54-
bazel test //...
55-
cp bazel-bin/src/main/java/com/launchableinc/ingest/commits/exe_deploy.jar launchable/jar/exe_deploy.jar
56-
```
53+
./build-java.sh
54+
```
5755

5856
# Installing CLI
5957

build-java.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash -ex
2+
bazel build //src/main/java/com/launchableinc/ingest/commits:exe_deploy.jar
3+
bazel test //...
4+
cp bazel-bin/src/main/java/com/launchableinc/ingest/commits/exe_deploy.jar launchable/jar/exe_deploy.jar
5+

0 commit comments

Comments
 (0)