Skip to content

Commit

Permalink
change order
Browse files Browse the repository at this point in the history
deploy
  • Loading branch information
trueberryless committed Nov 24, 2024
1 parent 142fc5d commit 953169b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
elif [[ "$dest_file" == "package.json" ]]; then
echo "Special handling for package.json"
temp_file=$(mktemp)
jq -s 'reduce .[] as $item ({}; . * $item)' "../$src_file" "$dest_file" > "$temp_file"
jq -s 'reduce .[] as $item ({}; . * $item)' "$dest_file" "../$src_file" > "$temp_file"
mv "$temp_file" "$dest_file"
fi
else
Expand Down

0 comments on commit 953169b

Please sign in to comment.