Skip to content

Commit

Permalink
merge-upstream.sh: Allow merging specific version
Browse files Browse the repository at this point in the history
  • Loading branch information
su-ex committed Jul 31, 2023
1 parent e68cd72 commit 143bf7a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion merge_upstream.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ automatic_i18n_reversion
automatic_packagejson_reversion

# Merge upstream
get_latest_upstream_tag

# Check if specific version to merge passed
if [ -z "$1" ]; then
get_latest_upstream_tag
else
latest_upstream_tag="$1"
fi
forelement_repos git merge "$latest_upstream_tag"

get_current_mxsdk_tags
Expand Down

0 comments on commit 143bf7a

Please sign in to comment.