Skip to content

Commit

Permalink
Changed build.py to accept --txt and --cites args
Browse files Browse the repository at this point in the history
  • Loading branch information
sonofmun committed May 31, 2017
1 parent c05b195 commit b03adf7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion HookTest/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ def cmd(**kwargs):
:rtype:
"""
if kwargs['travis'] is True:
status, message = Travis(path=kwargs['path'], dest=kwargs['dest'], tar=kwargs['tar']).run()
status, message = Travis(path=kwargs['path'], dest=kwargs['dest'], tar=kwargs['tar'],
txt=kwargs['txt'], cites=kwargs['cites']).run()
return status, message
else:
return False, 'You cannot run build on the base class'

0 comments on commit b03adf7

Please sign in to comment.