8 lines
189 B
Bash
Executable file
8 lines
189 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p imagemagick
|
|
|
|
DIR=$(dirname -- "$(readlink -f -- "$0")")
|
|
|
|
magick -density 1200 "$DIR/source.svg" "$DIR/export.png"
|
|
|
|
git add "$DIR/export.png"
|