diff options
author | Jernej Jakob <jernej.jakob@gmail.com> | 2020-04-09 05:53:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 07:53:34 +0200 |
commit | 967cf9df004aba4b883a2d35a01e159e10c3489c (patch) | |
tree | 6418e4c3e42997a2d552b192c7651df8ebc1ce14 /scripts/build-config | |
parent | 8d71437b8d41623fdd485b7d0f659b55860648b5 (diff) | |
download | vyos-build-967cf9df004aba4b883a2d35a01e159e10c3489c.tar.gz vyos-build-967cf9df004aba4b883a2d35a01e159e10c3489c.zip |
T2250: make build_dir a relative path
Diffstat (limited to 'scripts/build-config')
-rwxr-xr-x | scripts/build-config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-config b/scripts/build-config index dd74a50e..c613b0e4 100755 --- a/scripts/build-config +++ b/scripts/build-config @@ -120,7 +120,7 @@ if args['build_type'] == 'development': # Populate some defaults that are not configurable, # but that are handy to have in the options hash args['distribution'] = build_defaults["debian_distribution"] -args['build_dir'] = os.path.join(os.getcwd(), defaults.BUILD_DIR) +args['build_dir'] = defaults.BUILD_DIR args['pbuilder_config'] = defaults.PBUILDER_CONFIG args['vyos_branch'] = build_defaults["vyos_branch"] |