From 05d9b6e6a014c14b9d4f707f1c267154c966b357 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Otto=20Kek=C3=A4l=C3=A4inen?= Date: Sat, 4 Aug 2018 15:55:00 +0800 Subject: [PATCH] Fix wrong-path-for-interpreter in innotop script The interpreter used is installed at another location on Debian systems. In general, env should not be used in shebangs but the real name instead. --- debian/additions/innotop/innotop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/additions/innotop/innotop b/debian/additions/innotop/innotop index f958eba4..61e0bb13 100644 --- a/debian/additions/innotop/innotop +++ b/debian/additions/innotop/innotop @@ -1,4 +1,4 @@ -#!/usr/bin/env perl +#!/usr/bin/perl # vim: tw=160:nowrap:expandtab:tabstop=3:shiftwidth=3:softtabstop=3 -- GitLab