]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/commitdiff
Use the force
authorJohannes Zellner <johannes@nebulon.de>
Tue, 1 Mar 2016 16:34:57 +0000 (17:34 +0100)
committerJohannes Zellner <johannes@nebulon.de>
Tue, 1 Mar 2016 16:34:57 +0000 (17:34 +0100)
src/files.js

index 68dfea308dccd04265379508dd89b271fc9ce5f1..8a4115f896767bc633a41edb3512d9263855fac7 100644 (file)
@@ -159,7 +159,7 @@ function del(req, res, next) {
         // add globs to get file listing
         if (result.isDirectory()) absoluteFilePath += '/**';
 
-        rm(absoluteFilePath, { dryRun: dryRun }).then(function (result) {
+        rm(absoluteFilePath, { dryRun: dryRun, force: true }).then(function (result) {
             result = result.map(removeBasePath);
             next(new HttpSuccess(200, { entries: result }));
         }, function (error) {