File: 0001-use-usr-bin-env-in-shebang.patch

package info (click to toggle)
kitty 0.41.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,052 kB
  • sloc: ansic: 81,083; python: 54,159; objc: 4,934; sh: 1,282; xml: 364; makefile: 143; javascript: 78
file content (18 lines) | stat: -rw-r--r-- 711 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
From: Maytham Alsudany <maytha8thedev@gmail.com>
Date: Mon, 6 Nov 2023 21:48:12 +0800
Subject: use /usr/bin/env in shebang
Forwarded: no

This is to fix lintian's error regarding the shebang.
---
 shell-integration/fish/vendor_conf.d/kitty-shell-integration.fish | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--- a/shell-integration/fish/vendor_conf.d/kitty-shell-integration.fish
+++ b/shell-integration/fish/vendor_conf.d/kitty-shell-integration.fish
@@ -1,4 +1,4 @@
-#!/bin/fish
+#!/usr/bin/env fish
 
 # To use fish's autoloading feature, kitty prepends the vendored integration script directory to XDG_DATA_DIRS.
 # The original paths needs to be restored here to not affect other programs.