Skip to content

Commit

Permalink
fix(cli): fix 'sips' output to use scaled values
Browse files Browse the repository at this point in the history
Fixes #1004
  • Loading branch information
jwerle committed Nov 14, 2024
1 parent bc31120 commit 4fb4d80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/cli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2981,7 +2981,7 @@ int main (int argc, char* argv[]) {
StringStream sipsCommand;
sipsCommand
<< "sips"
<< " -z " << size << " " << size
<< " -z " << scaled << " " << scaled
<< " " << src
<< " --out " << destFilePath;

Expand Down

0 comments on commit 4fb4d80

Please sign in to comment.