File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- scripts/build-vyos-image
1+ scripts/image-build/ build-vyos-image
Original file line number Diff line number Diff line change @@ -39,8 +39,9 @@ except ModuleNotFoundError as e:
3939 print (f"Cannot load a required library: { e } " )
4040 print ("Please make sure the following Python3 modules are installed: tomli jinja2 git" )
4141
42- import vyos_build_utils as utils
43- import vyos_build_defaults as defaults
42+ # Local modules
43+ import utils
44+ import defaults
4445
4546# argparse converts hyphens to underscores,
4647# so for lookups in the original options hash we have to convert them back
Original file line number Diff line number Diff line change 1- # Copyright (C) 2018 VyOS maintainers and contributors
1+ # Copyright (C) 2024 VyOS maintainers and contributors
22#
33# This program is free software; you can redistribute it and/or modify
44# it under the terms of the GNU General Public License version 2 or later as
Original file line number Diff line number Diff line change 1- # Copyright (C) 2015 VyOS maintainers and contributors
1+ # Copyright (C) 2024 VyOS maintainers and contributors
22#
33# This program is free software; you can redistribute it and/or modify
44# it under the terms of the GNU General Public License version 2 or later as
2121import os
2222from distutils .spawn import find_executable
2323
24- import vyos_build_defaults as defaults
24+ # Local modules
25+ import defaults
2526
2627def check_build_config ():
2728 if not os .path .exists (defaults .BUILD_CONFIG ):
You can’t perform that action at this time.
0 commit comments