Use the $PATH

This commit is contained in:
Reinhard Pointner 2019-05-04 19:16:31 +07:00
parent bb686b5a27
commit 546149a88d
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ File getThumbnailPath(db, id) {
void createThumbnail(original, thumb) {
thumb.dir.mkdirs()
execute '/usr/local/bin/convert', original, '-strip', '-thumbnail', '48x48>', 'PNG8:' + thumb
execute 'convert', original, '-strip', '-thumbnail', '48x48>', 'PNG8:' + thumb
}