remove incorrect old comments

This commit is contained in:
Ben Irvin 2022-11-30 10:44:35 +01:00
parent f7fb12273a
commit 631662bbf9
2 changed files with 0 additions and 3 deletions

View File

@ -63,7 +63,6 @@ module.exports = async (opts) => {
/** /**
* To a Strapi backup file * To a Strapi backup file
*/ */
// treat any unknown arguments as filenames
const maxSize = _.isFinite(_.toNumber(opts.maxSize)) const maxSize = _.isFinite(_.toNumber(opts.maxSize))
? _.toNumber(opts.maxSize) * BYTES_IN_MB ? _.toNumber(opts.maxSize) * BYTES_IN_MB
: undefined; : undefined;

View File

@ -23,8 +23,6 @@ module.exports = async (opts) => {
/** /**
* From strapi backup file * From strapi backup file
*/ */
// treat any unknown arguments as filenames
const sourceOptions = { const sourceOptions = {
backupFilePath: filename, backupFilePath: filename,
}; };