Skip to content

Commit

Permalink
fix changesets action
Browse files Browse the repository at this point in the history
  • Loading branch information
davidliu committed Aug 29, 2024
1 parent 3fe5f0e commit 41472a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/update_android_gradle_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -x
PACKAGE_VERSION=$(cat ./package.json | jq -r '.version')
>&2 echo "updating gradle version name to $PACKAGE_VERSION"

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

# sed command works only on linux based systems as macOS version expects a backup file passed additionally
Expand Down
2 changes: 1 addition & 1 deletion scripts/update_snapshot_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -x
PACKAGE_VERSION=$(cat ./package.json | jq -r '.version')
>&2 echo "current version: $PACKAGE_VERSION"

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

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

0 comments on commit 41472a7

Please sign in to comment.