Skip to content

Commit

Permalink
[Android/Kotlin]: Fix dev release (#3473)
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshiotomakan committed Oct 9, 2023
1 parent 4ffd26e commit 9f08ce0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/android-build
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
set -e

source $(dirname $0)/library
version=$(wc_read_version)
version=$(wc_read_version $1)

pushd android
./gradlew assembleRelease
Expand Down
2 changes: 1 addition & 1 deletion tools/android-release
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -e

source $(dirname $0)/library
version=$(wc_read_version)
version=$(wc_read_version $1)

echo "Building $version"

Expand Down
2 changes: 1 addition & 1 deletion tools/kotlin-release
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

source $(dirname $0)/library
version=$(wc_read_version)
version=$(wc_read_version $1)

echo "Building $version"

Expand Down

0 comments on commit 9f08ce0

Please sign in to comment.