Add development options to install
Added --dev and --local args to create local devenv. #29 (closed)
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
-
112 112 with open(self.keyfile, 'w') as f: 113 113 yaml.dump(self.data, f) 114 114 115 116 115 parser = argparse.ArgumentParser() 117 116 parser.add_argument('--kvm-present', action='store_true', 118 117 help='Installs with KVM hypervisor otherwise with QEMU.') 118 parser.add_argument('--dev', action='store_true', 119 help='Installs Develpment version') 120 parser.add_argument('--local', action='store_true', 121 help='Installs Develpment version') 119 122 args = parser.parse_args() 120 123 124 if args.dev is True or args.local is True: -
Master
Why the 'is True'?
-
-
-
Toggle commit list
-
closed
Toggle commit list