1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?b?SsOpcsOpbXkgTGFs?= <kapouer@melix.org>
Date: Sun, 2 Nov 2025 17:51:07 +0100
Subject: Fix path to nodejs binary on Debian systems
Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2020-03-09
---
bin.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin.js b/bin.js
index 023814c..6cc29bf 100755
--- a/bin.js
+++ b/bin.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/node
const rimraf = require('./')
|