From 76557008108732ade51331eb7fc2569aa3741d50 Mon Sep 17 00:00:00 2001 From: Jeffrey Townsend Date: Fri, 11 Dec 2015 21:34:30 +0000 Subject: [PATCH] Fix manifest platform list. --- tools/onlrfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/onlrfs.py b/tools/onlrfs.py index d5dca62f..fb03c69b 100755 --- a/tools/onlrfs.py +++ b/tools/onlrfs.py @@ -392,7 +392,7 @@ rm -f /usr/sbin/policy-rc.d if os.path.exists(manifest['platforms']): md['platforms'] = yaml.load(open(manifest['platforms'])) else: - md['platforms'] = manifest['platforms'].split() + md['platforms'] = manifest['platforms'].split(',') with open(mname, "w") as f: json.dump(md, f, indent=2) onlu.execute("sudo chmod a-w %s" % mname)