diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/recipetool/create.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index 4f95d7e3ae..1218a7d284 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py | |||
@@ -140,7 +140,7 @@ def create_recipe(args): | |||
140 | # Assume the archive contains the directory structure verbatim | 140 | # Assume the archive contains the directory structure verbatim |
141 | # so we need to extract to a subdirectory | 141 | # so we need to extract to a subdirectory |
142 | fetchuri += ';subdir=%s' % os.path.splitext(os.path.basename(urlparse.urlsplit(fetchuri).path))[0] | 142 | fetchuri += ';subdir=%s' % os.path.splitext(os.path.basename(urlparse.urlsplit(fetchuri).path))[0] |
143 | git_re = re.compile('(https?)://([^;]+\.git)(;.*)?') | 143 | git_re = re.compile('(https?)://([^;]+\.git)(;.*)?$') |
144 | res = git_re.match(fetchuri) | 144 | res = git_re.match(fetchuri) |
145 | if res: | 145 | if res: |
146 | # Need to switch the URI around so that the git fetcher is used | 146 | # Need to switch the URI around so that the git fetcher is used |