If dist is not supported, fall back to exporting.
This commit is contained in:
parent
6bb2b0a847
commit
2aaf74a384
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ if __name__ == "__main__":
|
||||||
packaging_tree=packaging_tree,
|
packaging_tree=packaging_tree,
|
||||||
chroot=args.chroot,
|
chroot=args.chroot,
|
||||||
)
|
)
|
||||||
except NoBuildToolsFound:
|
except (NoBuildToolsFound, NotImplementedError):
|
||||||
logging.info("No build tools found, falling back to simple export.")
|
logging.info("No build tools found, falling back to simple export.")
|
||||||
export(tree, "dist.tar.gz", "tgz", None)
|
export(tree, "dist.tar.gz", "tgz", None)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue