Exit with error if we have no lang-table
This commit is contained in:
parent
58d5ecf2a7
commit
f5ac972e92
@ -54,6 +54,10 @@ class LoraxInstallTree(BaseLoraxClass):
|
|||||||
|
|
||||||
# get locales we need to keep
|
# get locales we need to keep
|
||||||
langtable = joinpaths(self.root, "usr/share/anaconda/lang-table")
|
langtable = joinpaths(self.root, "usr/share/anaconda/lang-table")
|
||||||
|
if not os.path.exists(langtable):
|
||||||
|
logger.critical("could not find anaconda lang-table, exiting")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
with open(langtable, "r") as fobj:
|
with open(langtable, "r") as fobj:
|
||||||
langs = fobj.readlines()
|
langs = fobj.readlines()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user