Skip to content

Commit

Permalink
Don’t put * in XPI file names
Browse files Browse the repository at this point in the history
That’s just asking for trouble.
  • Loading branch information
1ec5 committed Oct 24, 2014
1 parent 0bb34e0 commit 5e5ec18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def main():
xpi_paths.append(arg)

if not xpi_paths:
xpi_vars = {"package": package_name, "version": version}
xpi_vars = {"package": package_name, "version": version.replace("*.", "")}
xpi_paths = [p % xpi_vars for p in XPI_FILES]

# Directories
Expand Down

0 comments on commit 5e5ec18

Please sign in to comment.