aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bd8d329..a624e9e 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ build/convert:
23 # which only supports JSON 23 # which only supports JSON
24 @echo "#!`pwd`/.py3/bin/python" > build/convert 24 @echo "#!`pwd`/.py3/bin/python" > build/convert
25 @echo "import yaml, json, sys" >> build/convert 25 @echo "import yaml, json, sys" >> build/convert
26 @echo "y = yaml.load(open(sys.argv[1]))" >> build/convert 26 @echo "y = yaml.full_load(open(sys.argv[1]))" >> build/convert
27 @echo "for k in ['ami_access','deploy_regions','add_repos','add_pkgs','add_svcs']:" >> build/convert 27 @echo "for k in ['ami_access','deploy_regions','add_repos','add_pkgs','add_svcs']:" >> build/convert
28 @echo " if k in y and isinstance(y[k], list):" >> build/convert 28 @echo " if k in y and isinstance(y[k], list):" >> build/convert
29 @echo " y[k] = ','.join(str(x) for x in y[k])" >> build/convert 29 @echo " y[k] = ','.join(str(x) for x in y[k])" >> build/convert