Skip to content

Commit 8fc7a77

Browse files
authored
Merge pull request #1020 from flybyray/lighthouse-1919-building-modules-with-a-space-in-path-under-windows-fails
[#1919] fixes Building modules with a space in path under windows fails
2 parents 63839b7 + 562dcd0 commit 8fc7a77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/pym/play/commands/modulesrepo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def build(app, args, env):
326326
print "~"
327327
print "~ Building..."
328328
print "~"
329-
status = subprocess.call('ant -f %s -Dplay.path=%s' % (build_file, ftb), shell=True)
329+
status = subprocess.call('ant -f "%s" -Dplay.path="%s"' % (build_file, ftb), shell=True)
330330
print "~"
331331
if status:
332332
sys.exit(status)

0 commit comments

Comments
 (0)