Skip to content

Commit

Permalink
Merge branch 'main' into storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
iva2k committed Jul 22, 2024
2 parents 284ca84 + fa82a5d commit a811f0c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion scripts/git-merge_main-to-all-ui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,10 @@ function parse_arguments() {
# usage
# exit 1
# fi

# The rest are positional arguments (shift the processed options)
# shift $((OPTIND-1))
# positional_args=("$@")
}

# alias decolor='sed "s/\x1B\[\([0-9]\{1,2\}\(;[0-9]\{1,2\}\)\?\)\?[mGK]//g"'
Expand Down Expand Up @@ -274,7 +278,7 @@ function merge_to_one() {
is_continue="$1"
i="$2"
TARGET_BRANCH="${TARGET_BRANCHES[$i]}"
echo "${SEP2}" | tee -a "$LOGFILE"
echo "${SEP2}$TARGET_BRANCH " | tee -a "$LOGFILE"
[ "$DEBUG" -ne 0 ] && echo "DEBUG: merge_to_one() is_continue=$is_continue i=$i TARGET_BRANCH=$TARGET_BRANCH"
save_state ;# checkpoint

Expand Down
6 changes: 5 additions & 1 deletion scripts/git-run-all-in-branches.sh
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ function parse_arguments() {
# usage
# exit 1
# fi

# The rest are positional arguments (shift the processed options)
# shift $((OPTIND-1))
# positional_args=("$@")
}

# alias decolor='sed "s/\x1B\[\([0-9]\{1,2\}\(;[0-9]\{1,2\}\)\?\)\?[mGK]//g"'
Expand All @@ -226,7 +230,7 @@ function run_one() {
i="$1"
TARGET_BRANCH="${TARGET_BRANCHES[$i]}"
LOGFILE_I="$LOGFILE.$TARGET_BRANCH"
echo "${SEP2}" | tee -a "$LOGFILE"
echo "${SEP2}$TARGET_BRANCH " | tee -a "$LOGFILE"
[ "$DEBUG" -ne 0 ] && echo "DEBUG: run_one() i=$i TARGET_BRANCH=$TARGET_BRANCH LOGFILE_I=$LOGFILE_I"
save_state ;# checkpoint

Expand Down

0 comments on commit a811f0c

Please sign in to comment.