1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

removed node modules upload call

This commit is contained in:
Martin McKeaveney 2021-05-24 19:54:00 +01:00
parent 3d4eab27a8
commit 4e2d8ee6cf

View file

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