Skip to content

Commit 0211015

Browse files
authored
fix(checksum-sort): correct command invocation for FOP CLI in sorting function (#648)
- Updated the command from `fozp-cli` to `fop-cli` in the `sort_filter` function to ensure proper execution of the FOP CLI for sorting filter rules. This change enhances the reliability of the script when utilizing the FOP CLI for sorting operations.
1 parent 759f0bb commit 0211015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/checksum-sort.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ sort_filter() {
171171
fi
172172
elif command -v fop-cli >/dev/null 2>&1; then
173173
log_info "🔀 Using FOP CLI (fop-cli)"
174-
if fozp-cli "$file" >/dev/null 2>&1; then
174+
if fop-cli "$file" >/dev/null 2>&1; then
175175
log_info "✅ FOP CLI sorting completed successfully"
176176
return
177177
else

0 commit comments

Comments
 (0)