Skip to content

Commit

Permalink
Fixed the jar signing on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dgboone committed May 12, 2015
1 parent ddf4017 commit ad3dbca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/Makefile.mak
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ GRADLE = gradlew.bat
!endif

!if "$(JARSIGNER_KEYSTORE)" != ""
BUILD_FLAGS = -Dorg.gradle.project.keystore="$(JARSIGNER_KEYSTORE)"
BUILD_FLAGS = $(BUILD_FLAGS) -Dorg.gradle.project.keystore="$(JARSIGNER_KEYSTORE)"
!endif

!if "$(JARSIGNER_KEYSTORE_PASSWORD)" != ""
BUILD_FLAGS = -Dorg.gradle.project.keystore_password="$(JARSIGNER_KEYSTORE_PASSWORD)"
BUILD_FLAGS = $(BUILD_FLAGS) -Dorg.gradle.project.keystore_password="$(JARSIGNER_KEYSTORE_PASSWORD)"
!endif

all:
Expand Down

0 comments on commit ad3dbca

Please sign in to comment.