removed node modules upload call

This commit is contained in:
Martin McKeaveney 2021-05-24 19:54:00 +01:00
parent 3d4eab27a8
commit 4e2d8ee6cf
1 changed files with 0 additions and 2 deletions

View File

@ -12,7 +12,6 @@ const {
streamUpload, streamUpload,
deleteFolder, deleteFolder,
downloadTarball, downloadTarball,
uploadDirectory,
} = require("./utilities") } = require("./utilities")
const { downloadLibraries, uploadClientLibrary } = require("./newApp") const { downloadLibraries, uploadClientLibrary } = require("./newApp")
const download = require("download") const download = require("download")
@ -136,7 +135,6 @@ exports.performBackup = async (appId, backupName) => {
exports.createApp = async appId => { exports.createApp = async appId => {
await downloadLibraries(appId) await downloadLibraries(appId)
await uploadClientLibrary(appId) await uploadClientLibrary(appId)
await uploadDirectory(ObjectStoreBuckets.APPS, NODE_MODULES_PATH, appId)
} }
/** /**