reorder initialization again

This commit is contained in:
Tomas Groth 2019-02-16 21:34:36 +01:00
parent 3ae58f56df
commit 936fa3fc78
1 changed files with 2 additions and 2 deletions

View File

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