Another quick question. In the Windows batch file and the Linux/MacOSX .sh file, I see a line that appears to removing an existing KoboRoot.tgz file.
Code:
erase "KoboRoot.tgz" >nul 2>&1
rm -f "KoboRoot.tgz"
Is this supposed to be removing a previously created KoboRoot.tgz file from the out directory?
Code:
erase "out\KoboRoot.tgz" >nul 2>&1
rm -f "./out/KoboRoot.tgz"