Skip to content

Commit 517ba38

Browse files
authored
update Makefile (#488)
1 parent a23b951 commit 517ba38

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BUILD_DATE=$(shell date -u +"%Y-%m-%d")
22
AUTOBAHN_JAVA_VERSION='20.6.1'
3-
AUTOBAHN_JAVA_VCS_REF='unknown'
3+
AUTOBAHN_JAVA_VCS_REF='a23b951'
44

55
default:
66
@echo 'Build targets: clean build publish'
@@ -73,13 +73,13 @@ build_android:
7373

7474
publish_android: build_android
7575
sed -i 's/DEBUG = true/DEBUG = false/g' autobahn/src/main/java/io/crossbar/autobahn/utils/Globals.java
76-
AUTOBAHN_BUILD_VERSION=${AUTOBAHN_JAVA_VERSION} gradle bintrayUpload -PbuildPlatform=android
76+
AUTOBAHN_BUILD_VERSION=${AUTOBAHN_JAVA_VERSION} ./gradlew bintrayUpload -PbuildPlatform=android
7777
sed -i 's/DEBUG = false/DEBUG = true/g' autobahn/src/main/java/io/crossbar/autobahn/utils/Globals.java
7878

7979
publish_android_legacy: build_android
8080
sed -i 's/DEBUG = true/DEBUG = false/g' autobahn/src/main/java/io/crossbar/autobahn/utils/Globals.java
8181
$(shell ./enable_old_androids.sh)
82-
AUTOBAHN_BUILD_VERSION=${AUTOBAHN_JAVA_VERSION} gradle bintrayUpload -PbuildPlatform=android -PbuildLegacy=true
82+
AUTOBAHN_BUILD_VERSION=${AUTOBAHN_JAVA_VERSION} ./gradlew bintrayUpload -PbuildPlatform=android -PbuildLegacy=true
8383
sed -i 's/DEBUG = false/DEBUG = true/g' autobahn/src/main/java/io/crossbar/autobahn/utils/Globals.java
8484

8585

@@ -90,7 +90,7 @@ build_netty:
9090
crossbario/autobahn-java:netty \
9191
gradle -PbuildPlatform=netty distZip
9292

93-
publish_netty: build_netty
93+
publish_netty:
9494
sed -i 's/DEBUG = true/DEBUG = false/g' autobahn/src/main/java/io/crossbar/autobahn/utils/Globals.java
95-
AUTOBAHN_BUILD_VERSION=${AUTOBAHN_JAVA_VERSION} gradle bintrayUpload -PbuildPlatform=netty
95+
AUTOBAHN_BUILD_VERSION=${AUTOBAHN_JAVA_VERSION} ./gradlew bintrayUpload -PbuildPlatform=netty
9696
sed -i 's/DEBUG = false/DEBUG = true/g' autobahn/src/main/java/io/crossbar/autobahn/utils/Globals.java

autobahn/src/main/java/io/crossbar/autobahn/utils/Globals.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313

1414
public class Globals {
1515
// Default set to true, this is set to false by the release script.
16-
public static final boolean DEBUG = false;
16+
public static final boolean DEBUG = true;
1717
}

0 commit comments

Comments
 (0)