-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove useless magick convert subcommand, deprecated
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
havecmd -V 'This is typically installed as part of imagemagick' convert || exit $? | ||
FILEPATH=${1:?Must provide image to convert} | ||
exec magick convert "${FILEPATH}" -rotate 90 "${FILEPATH}" | ||
exec magick "${FILEPATH}" -rotate 90 "${FILEPATH}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
havecmd -V 'This is typically installed as part of imagemagick' magick || exit $? | ||
FILEPATH=${1:?Must provide image to convert} | ||
exec magick convert "$FILEPATH" "$(replace-extension "$FILEPATH" jpg)" | ||
exec magick "$FILEPATH" "$(replace-extension "$FILEPATH" jpg)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
havecmd -V 'This is typically installed as part of imagemagick' magick || exit $? | ||
FILEPATH=${1:?Must provide image to convert} | ||
exec magick convert "$FILEPATH" "$(replace-extension "$FILEPATH" png)" | ||
exec magick "$FILEPATH" "$(replace-extension "$FILEPATH" png)" |