Skip to content
This repository has been archived by the owner on Mar 28, 2019. It is now read-only.

Commit

Permalink
Bug 782324 - Add support in JarMaker for file names that contain '@'.…
Browse files Browse the repository at this point in the history
… r=khuey
  • Loading branch information
Frank Yan committed Aug 31, 2012
1 parent 45cf176 commit 0889c95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/JarMaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class JarMaker(object):
jarline = re.compile('(?:(?P<jarfile>[\w\d.\-\_\\\/]+).jar\:)|(?:\s*(\#.*)?)\s*$')
regline = re.compile('\%\s+(.*)$')
entryre = '(?P<optPreprocess>\*)?(?P<optOverwrite>\+?)\s+'
entryline = re.compile(entryre + '(?P<output>[\w\d.\-\_\\\/\+]+)\s*(\((?P<locale>\%?)(?P<source>[\w\d.\-\_\\\/]+)\))?\s*$')
entryline = re.compile(entryre + '(?P<output>[\w\d.\-\_\\\/\+\@]+)\s*(\((?P<locale>\%?)(?P<source>[\w\d.\-\_\\\/\@]+)\))?\s*$')

def __init__(self, outputFormat = 'flat', useJarfileManifest = True,
useChromeManifest = False):
Expand Down

0 comments on commit 0889c95

Please sign in to comment.