Skip to content

Commit

Permalink
define executable
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Feb 9, 2018
1 parent 0a282c6 commit 4faa970
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion linter.py
Expand Up @@ -21,6 +21,7 @@ class Makensis(Linter):
"""Provides an interface to the makensis executable."""

cmd = None
executable = 'makensis'
version_args = '-VERSION'
version_re = r'(?P<version>\d+\.\d+(\.\d+)?)'
version_requirement = '>= 3.02.1'
Expand Down Expand Up @@ -52,7 +53,7 @@ def cmd(self):
cmd.append('@')

# Don't write installer
if platform == "win32":
if platform == 'win32':
out_file = 'OutFile NUL'
else:
out_file = 'OutFile /dev/null/'
Expand Down

0 comments on commit 4faa970

Please sign in to comment.