parent
b0cc64e5c5
commit
a6c4bd3bc9
|
|
@ -1,3 +1,7 @@
|
||||||
|
# ATTENTION! THIS ISN'T A FULLY FUNCTIONAL EXAMPLE.
|
||||||
|
# You should take portions of this example and edit the options to make
|
||||||
|
# them suitable for your use.
|
||||||
|
# This file is useful to know all the available options.
|
||||||
kibot:
|
kibot:
|
||||||
version: 1
|
version: 1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -395,6 +395,10 @@ def create_example(pcb_file, out_dir, copy_options, copy_expand):
|
||||||
exit(WONT_OVERWRITE)
|
exit(WONT_OVERWRITE)
|
||||||
with open(fname, 'w') as f:
|
with open(fname, 'w') as f:
|
||||||
logger.info('Creating {} example configuration'.format(fname))
|
logger.info('Creating {} example configuration'.format(fname))
|
||||||
|
f.write("# ATTENTION! THIS ISN'T A FULLY FUNCTIONAL EXAMPLE.\n")
|
||||||
|
f.write("# You should take portions of this example and edit the options to make\n")
|
||||||
|
f.write("# them suitable for your use.\n")
|
||||||
|
f.write("# This file is useful to know all the available options.\n")
|
||||||
f.write('kibot:\n version: 1\n')
|
f.write('kibot:\n version: 1\n')
|
||||||
# Preflights
|
# Preflights
|
||||||
f.write('\npreflight:\n')
|
f.write('\npreflight:\n')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue