<noinclude>{{Header}}</noinclude> <div class="toccolours mw-collapsible mw-collapsed"> Advanced users can opt-in to skip certain build steps and/or Debian maintenance scripts (postinst, preinst, ...). <div class="mw-collapsible-content"> <u>Skip Sanity Tests</u> Useful to speed up the build. <pre> --sanity-tests false </pre> <u>Skipping Build Steps</u> <pre> export SKIP_SCRIPTS+=" 1300_create-raw-image " </pre> <u>Skipping Chroot and/or Postinst Scripts</u> <pre> export SKIP_SCRIPTS+=" dist-base-files.postinst " </pre> Look at the file names and add them. <code>export SKIP_SCRIPTS+=" another_file_name "</code>. Do not forget empty spaces before and after <code>"</code>. <ref name=bash-array> We are expanding a bash array. </ref> </div> </div><noinclude>{{Footer}}</noinclude>