helping build

This commit is contained in:
rusefillc 2020-10-07 19:17:05 -04:00
parent 441880453d
commit a9d3e84850
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ public class DfuUpload {
@Override @Override
public void run() { public void run() {
try { try {
ConnectionAndMeta c = new ConnectionAndMeta(BUNDLE_FILE).invoke(); ConnectionAndMeta c = new ConnectionAndMeta(BUNDLE_FILE).invoke(ConnectionAndMeta.BASE_URL_LATEST);
ConnectionAndMeta.downloadFile(localFullFile, c, new ConnectionAndMeta.DownloadProgressListener() { ConnectionAndMeta.downloadFile(localFullFile, c, new ConnectionAndMeta.DownloadProgressListener() {
@Override @Override
public void onPercentage(final int currentProgress) { public void onPercentage(final int currentProgress) {

View File

@ -39,7 +39,7 @@ public class NetworkConnectorStartup {
log.error(message); log.error(message);
System.out.println(message); System.out.println(message);
// let's give wrapper bash script a chance to update software // let's give wrapper bash script a chance to update software
System.exit(NetworkConnectorContext.UPDATE_FIRMWARE_EXIT_CODE); System.exit(NetworkConnectorContext.UPDATE_RELEASE_FIRMWARE_EXIT_CODE);
} }
} catch (IOException e) { } catch (IOException e) {
log.error("Ignoring", e); log.error("Ignoring", e);