if (argv.projectId && argv.zipPath) {
        const file = fs.createReadStream(argv.zipPath);
        updateSourceWithId(file, argv.projectId)
        .then(() => {
            console.info("Project source with ID: " + argv.projectId + " was updated.");