This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-cli.git
The following commit(s) were added to refs/heads/master by this push:
new 77c556d Save Ballerina Binaries (#405)
77c556d is described below
commit 77c556d584cc66630cbcf6a71c6fa55af5cdb760
Author: James Dubee <[email protected]>
AuthorDate: Thu Feb 14 11:21:01 2019 -0500
Save Ballerina Binaries (#405)
---
commands/action.go | 2 ++
1 file changed, 2 insertions(+)
diff --git a/commands/action.go b/commands/action.go
index 93da0a0..fb01c0b 100644
--- a/commands/action.go
+++ b/commands/action.go
@@ -662,6 +662,8 @@ func getBinaryKindExtension(runtime string) (extension
string) {
switch strings.ToLower(runtime) {
case JAVA:
extension = JAVA_EXT
+ case BAL:
+ extension = BAL_BIN_EXT
default:
extension = ZIP_EXT
}