copy workload exits properly

This commit is contained in:
Jonathan Shook 2020-04-06 11:27:03 -05:00
parent 0f3970097a
commit 216069c7a6

View File

@ -115,6 +115,8 @@ public class NBCLI {
} catch (IOException e) { } catch (IOException e) {
throw new BasicError("Unable to write to " + writeTo.toString() + ": " + e.getMessage()); throw new BasicError("Unable to write to " + writeTo.toString() + ": " + e.getMessage());
} }
logger.info("Copied internal resource '" + data.asPath() + "' to '" + writeTo.toString() +"'");
System.exit(0);
} }