reorder initialization

This commit is contained in:
Tomas Groth 2019-02-16 21:19:52 +01:00
parent 6fc4e61f9f
commit 3ae58f56df
1 changed files with 1 additions and 1 deletions

View File

@ -62,8 +62,8 @@ class Builder(object):
A Generic class to base other operating system specific builders on
"""
def __init__(self):
self.setup_args()
self.read_config()
self.setup_args()
self.setup_paths()
self.setup_system_paths()
self.setup_executables()