diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-01-25 17:01:16 -0500 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-01-25 17:01:16 -0500 |
commit | ea48b7bd747df4ae5c8ee64c72cdc67e31ddcd5a (patch) | |
tree | 629c314afb8af9df59c106553b5296d21cf0aa1d /scripts/pbuilder-setup | |
parent | b7cbda3bffcc45c329759907f9665375df90d161 (diff) | |
download | vyos-build-ea48b7bd747df4ae5c8ee64c72cdc67e31ddcd5a.tar.gz vyos-build-ea48b7bd747df4ae5c8ee64c72cdc67e31ddcd5a.zip |
Switch all build scripts to python3.
Since we only support jessie as build host, and jessie knowingly does have
python3 (although not by default), we don't really need to worry about being
both 2 and 3 compatible.
Diffstat (limited to 'scripts/pbuilder-setup')
-rwxr-xr-x | scripts/pbuilder-setup | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/pbuilder-setup b/scripts/pbuilder-setup index fbd49a4f..a89348b8 100755 --- a/scripts/pbuilder-setup +++ b/scripts/pbuilder-setup @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Copyright (C) 2015 VyOS maintainers and contributors # @@ -50,4 +50,3 @@ result = os.system(pbuilder_create_command) if result > 0: print("pbuilder environment bootstrap failed") sys.exit(1) - |