Skip to content

Commit

Permalink
Sort file names (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst authored Sep 21, 2024
1 parent 0ce02a5 commit 26bb427
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/scripts/merge_tools/merge_git_then_plumelib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if [ -n "$VERBOSE" ] ; then
fi

# Check if there are still conflicts
diffs=$(git diff --name-only --diff-filter=U)
diffs=$(git diff --name-only --diff-filter=U | sort)
if [ -z "$diffs" ]; then
git add .
if [ -n "$VERBOSE" ] ; then
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/merge_tools/merge_script_then_plumelib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if [ -n "$VERBOSE" ] ; then
fi

# Check if there are still conflicts
diffs=$(git diff --name-only --diff-filter=U)
diffs=$(git diff --name-only --diff-filter=U | sort)
if [ -z "$diffs" ]; then
git add .
if [ -n "$VERBOSE" ] ; then
Expand Down

0 comments on commit 26bb427

Please sign in to comment.