Skip to content

Commit 0631c15

Browse files
committed
Merge pull request #66 from cabo/master
Obvious bugfix: Error output
2 parents f7d92fe + 7719798 commit 0631c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/word-to-markdown.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def self.run_command(*args)
5050

5151
output, status = Open3.capture2e(soffice.path, *args)
5252
logger.debug output
53-
raise "Command `#{soffice_path} #{args.join(" ")}` failed: #{output}" if status.exitstatus != 0
53+
raise "Command `#{soffice.path} #{args.join(" ")}` failed: #{output}" if status.exitstatus != 0
5454
output
5555
end
5656

0 commit comments

Comments
 (0)