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
@@ -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)
|