Skip to content

Commit

Permalink
Debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
cdo-defcon committed Apr 2, 2018
1 parent cf9b505 commit fa3e128
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions atomshields/checkers/retirejs.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,13 +172,15 @@ def install():
Install all the dependences
"""
cmd = CommandHelper()

# Install npm (nodejs)
cmd.install("npm")

# Install retre with npm
cmd = CommandHelper()
cmd.command = "npm install retire"
print cmd.execute()
cmd.execute()

print cmd.output
print colored(cmd.errors, "red")



Expand Down

0 comments on commit fa3e128

Please sign in to comment.