Skip to content

Commit

Permalink
Merge pull request #1020 from flybyray/lighthouse-1919-building-modul…
Browse files Browse the repository at this point in the history
…es-with-a-space-in-path-under-windows-fails

[#1919] fixes Building modules with a space in path under windows fails
  • Loading branch information
asolntsev authored Nov 28, 2016
2 parents 63839b7 + 562dcd0 commit 8fc7a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/pym/play/commands/modulesrepo.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def build(app, args, env):
print "~"
print "~ Building..."
print "~"
status = subprocess.call('ant -f %s -Dplay.path=%s' % (build_file, ftb), shell=True)
status = subprocess.call('ant -f "%s" -Dplay.path="%s"' % (build_file, ftb), shell=True)
print "~"
if status:
sys.exit(status)
Expand Down

0 comments on commit 8fc7a77

Please sign in to comment.