Buck: Fix variable substitution in crisper invocation

Test Plan:

  buck targets --show_output polygerrit-ui/app:gr-app | \
  cut -d " " -f 2

produces:
  buck-out/gen/polygerrit-ui/app/gr-app/gr-app.vulcanized.zip

instead of:
  buck-out/gen/polygerrit-ui/app/gr-app/%s.vulcanized.zip

Change-Id: I66d8a5d20434ae1f8911deac675afdd88a92224d
This commit is contained in:
David Ostrovsky
2016-01-09 13:55:19 +01:00
committed by David Pursehouse
parent a3377608c6
commit 7999527b7b

View File

@@ -165,5 +165,5 @@ def vulcanize(
'--js', '%s.js' % name,
'&&', 'zip', '$OUT', '%s.html' % name, '%s.js' % name,
]),
out = '%s.vulcanized.zip',
out = '%s.vulcanized.zip' % name,
)