File: use-debian-grunt.patch

package info (click to toggle)
node-grunt-webpack 4.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 680 kB
  • sloc: javascript: 911; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: use grunt from /usr/bin
Author: Yadd <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2021-12-13

--- a/tests/integration/fixtures.test.js
+++ b/tests/integration/fixtures.test.js
@@ -8,7 +8,7 @@
 import assertGruntFactory from "../utils/assertGrunt";
 
 const TMP_DIRECTORY = path.join(__dirname, "tmp");
-const GRUNT_BIN = path.join(__dirname, "../../node_modules/.bin/grunt");
+const GRUNT_BIN = "/usr/bin/grunt";
 
 const files = glob.sync(path.join(__dirname, "fixtures/**/Gruntfile.js"), {
   dot: true,