mirror of
https://github.com/FliegendeWurst/ripgrep-all.git
synced 2024-11-08 14:00:37 +00:00
Revert "Fix error message mentionning graphicsmagick instead of imagemagick"
As mentioned in
[a followup comment](https://github.com/phiresky/ripgrep-all/pull/19#issuecomment-633287929)
when this change from "graphicsmagick" to "imagemagick" was originally
merged, the code does currently call `gm` (src/adapters/pdfpages.rs:62)
and so does, in fact, need the "graphicsmagick" package.
This reverts commit 6d2df9162c
.
This commit is contained in:
parent
291033bf9f
commit
b48f4ce682
@ -73,7 +73,7 @@ impl FileAdapter for PdfPagesAdapter {
|
|||||||
|
|
||||||
let mut cmd = cmd
|
let mut cmd = cmd
|
||||||
.spawn()
|
.spawn()
|
||||||
.map_err(|e| map_exe_error(e, exe_name, "Make sure you have imagemagick installed."))?;
|
.map_err(|e| map_exe_error(e, exe_name, "Make sure you have graphicsmagick installed."))?;
|
||||||
let args = config.args;
|
let args = config.args;
|
||||||
|
|
||||||
let status = cmd.wait()?;
|
let status = cmd.wait()?;
|
||||||
|
Loading…
Reference in New Issue
Block a user