<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">I have:<div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div class=""># First, update the IDF</div><div class="">echo Updating ESP IDF...</div><div class="">cd $IDF_PATH</div><div class="">/usr/bin/git pull</div><div class="">/usr/bin/git submodule init</div><div class="">/usr/bin/git submodule update</div><div class="">echo</div><div class=""><br class=""></div><div class=""># Next, update the OVMS code</div><div class="">echo Updating OVMS code...</div><div class="">cd $OVMS_TREE</div><div class="">/usr/bin/git pull</div><div class="">/usr/bin/git submodule init</div><div class="">/usr/bin/git submodule update</div><div class="">echo</div></div></blockquote><div class=""><div><br class=""></div><div>Which seems to work for me.</div><div><br class=""></div><div>Regards, Mark.</div><div><br class=""><blockquote type="cite" class=""><div class="">On 14 Oct 2018, at 12:05 AM, Craig Leres <<a href="mailto:leres@xse.com" class="">leres@xse.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">On 10/3/18 5:38 AM, Michael Balzer wrote:<br class=""><blockquote type="cite" class="">I've added ZIP archive support. This is based on zlib and libzip, which are included as new submodules, so you'll need to do "git submodule update" after pulling the update.<br class=""></blockquote><br class="">My update script already does that:<br class=""><br class="">    #!/bin/sh<br class="">    set -x<br class="">    git fetch upstream<br class="">    git checkout master<br class="">    git submodule update<br class="">    git merge upstream/master<br class="">    git push<br class=""><br class="">Which updates my fork but I could not build after due to the lack of zip.h. I found this:<br class=""><br class="">    <a href="https://stackoverflow.com/a/38673595" class="">https://stackoverflow.com/a/38673595</a><br class=""><br class="">which suggests:<br class=""><br class="">    git submodule init<br class="">    git submodule update<br class="">    # or<br class="">    git submodule update --init<br class=""><br class="">The latter pulled in the new submodules and I then was able to build.<br class=""><br class=""><span class="Apple-tab-span" style="white-space:pre">       </span><span class="Apple-tab-span" style="white-space:pre">    </span>Craig<br class="">_______________________________________________<br class="">OvmsDev mailing list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev<br class=""></div></div></blockquote></div><br class=""></div></body></html>