scripts: convert: add nix build to ensure path

This commit is contained in:
2024-09-15 21:40:25 +02:00
parent ed1b629386
commit c5602cebbf
+1 -1
View File
@@ -1,6 +1,6 @@
#/usr/bin/env bash
IFS=$'\n'
nix build nixpkgs\#imagemagick --no-link
CONVERT="$(nix eval nixpkgs\#imagemagick.outPath | tr -d '"')/bin/magick"
convert_cmd () {
if ! command -v magick &> /dev/null; then $CONVERT "$@"; else convert "$@"; fi