File: no-clean.patch

package info (click to toggle)
node-postcss 6.0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,056 kB
  • sloc: makefile: 8; sh: 2
file content (13 lines) | stat: -rw-r--r-- 358 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
clean target fails if the files to delete is not present

--- a/gulpfile.js
+++ b/gulpfile.js
@@ -70,7 +70,7 @@
 
 gulp.task('build', done => {
     let runSequence = require('run-sequence');
-    runSequence('clean', ['build:lib', 'build:docs', 'build:package'], done);
+    runSequence(['build:lib', 'build:docs', 'build:package'], done);
 });
 
 // Tests