diff --git a/src/pdftk.cr b/src/pdftk.cr index 8403edc..d62c500 100644 --- a/src/pdftk.cr +++ b/src/pdftk.cr @@ -26,7 +26,10 @@ module Muse::Dl end def execute(args : Array(String)) - Process.run(@binary, args) + binary = @binary + if binary + Process.run(binary, args) + end end def strip_first_page(input_file : String)