@dynamicweb/cli 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/commands/files.js +0 -3
- package/package.json +1 -1
package/bin/commands/files.js
CHANGED
|
@@ -194,7 +194,6 @@ async function download(env, user, dirPath, outPath, recursive, outname, raw, ia
|
|
|
194
194
|
let excludeDirectories = '';
|
|
195
195
|
if (!iamstupid) {
|
|
196
196
|
excludeDirectories = 'system/log';
|
|
197
|
-
console.log(dirPath)
|
|
198
197
|
if (dirPath === 'cache.net') {
|
|
199
198
|
return;
|
|
200
199
|
}
|
|
@@ -214,8 +213,6 @@ async function download(env, user, dirPath, outPath, recursive, outname, raw, ia
|
|
|
214
213
|
console.log('Downloading', dirPath === '/.' ? 'Base' : dirPath, 'Recursive=' + recursive);
|
|
215
214
|
|
|
216
215
|
let filename;
|
|
217
|
-
console.log(data)
|
|
218
|
-
console.log(`${env.protocol}://${env.host}/Admin/Api/${endpoint}`)
|
|
219
216
|
fetch(`${env.protocol}://${env.host}/Admin/Api/${endpoint}`, {
|
|
220
217
|
method: 'POST',
|
|
221
218
|
body: JSON.stringify(data),
|
package/package.json
CHANGED