File: rewrite-shebang.patch

package info (click to toggle)
ruby-bluefeather 0.41-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 736 kB
  • sloc: ruby: 4,195; makefile: 9
file content (22 lines) | stat: -rw-r--r-- 557 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Youhei SASAKI <uwabami@gfd-dennou.org>
Date: Mon, 7 Feb 2022 11:42:23 +0900
Subject: Fix shebang
Forwarded: not-needed

Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org>
---
 bin/bluefeather | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/bluefeather b/bin/bluefeather
index dca8cba..9068b3d 100644
--- a/bin/bluefeather
+++ b/bin/bluefeather
@@ -1,4 +1,4 @@
-#!ruby
+#!/usr/bin/ruby
 
 require 'bluefeather/cui'
-BlueFeather::CUI.run(ARGV) or exit(1)
\ No newline at end of file
+BlueFeather::CUI.run(ARGV) or exit(1)