aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-import-orig
diff options
context:
space:
mode:
Diffstat (limited to 'git-import-orig')
-rwxr-xr-xgit-import-orig8
1 files changed, 7 insertions, 1 deletions
diff --git a/git-import-orig b/git-import-orig
index f3344bec..ade8437b 100755
--- a/git-import-orig
+++ b/git-import-orig
@@ -169,7 +169,13 @@ on howto create it otherwise use --upstream-branch to specify it.
unpack_orig(archive, tmpdir)
if options.verbose:
print "Unpacked %s to '%s'" % (archive , tmpdir)
- orig_dir = glob.glob(tmpdir+'/*')[0]
+ unpacked = glob.glob(tmpdir+'/*')
+ # archive has everything packed up in one subdir:
+ if len(unpacked) == 1:
+ orig_dir = unpacked[0]
+ # archive content not in a subdir
+ else:
+ orig_dir = tmpdir
try:
if not is_empty: