From 8bc62d4d7d6caa55a2f764082665e64e9bd46001 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Fri, 8 Jun 2018 21:19:16 +0200 Subject: Use os.makedirs instead of distutils stuff, make the configure script more verbose, pretty print build-config.json --- scripts/build-config | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/build-config b/scripts/build-config index a18e95ee..27a6c7ba 100755 --- a/scripts/build-config +++ b/scripts/build-config @@ -30,7 +30,6 @@ import os import getpass import platform import json -import distutils.dir_util import defaults @@ -115,7 +114,8 @@ if env_check_retval > 0: # Save to file -distutils.dir_util.mkpath(defaults.BUILD_DIR) - +os.makedirs(defaults.BUILD_DIR, exist_ok=True) +print("Saving the build config to {0}".format(defaults.BUILD_CONFIG)) with open(defaults.BUILD_CONFIG, 'w') as f: - json.dump(args, f) + json.dump(args, f, indent=4, sort_keys=True) + print("\n", file=f) -- cgit v1.2.3