Skip to content

Commit 41472a7

Browse files
committed
fix changesets action
1 parent 3fe5f0e commit 41472a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/update_android_gradle_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -x
55
PACKAGE_VERSION=$(cat ./package.json | jq -r '.version')
66
>&2 echo "updating gradle version name to $PACKAGE_VERSION"
77

8-
SNAPSHOT_VERSION=$(./ci/increment_semver.sh -p $PACKAGE_VERSION)"-SNAPSHOT"
8+
SNAPSHOT_VERSION=$(./scripts/increment_semver.sh -p $PACKAGE_VERSION)"-SNAPSHOT"
99
>&2 echo "next snapshot version to $SNAPSHOT_VERSION"
1010

1111
# sed command works only on linux based systems as macOS version expects a backup file passed additionally

scripts/update_snapshot_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -x
55
PACKAGE_VERSION=$(cat ./package.json | jq -r '.version')
66
>&2 echo "current version: $PACKAGE_VERSION"
77

8-
SNAPSHOT_VERSION=$(./ci/increment_semver.sh -p $PACKAGE_VERSION)"-SNAPSHOT"
8+
SNAPSHOT_VERSION=$(./scripts/increment_semver.sh -p $PACKAGE_VERSION)"-SNAPSHOT"
99
>&2 echo "updating snapshot version to $SNAPSHOT_VERSION"
1010

1111
# sed command works only on linux based systems as macOS version expects a backup file passed additionally

0 commit comments

Comments
 (0)