1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
From: Lucas Nussbaum <lucas@debian.org>
Date: Mon, 26 Dec 2022 14:10:24 +0100
Subject: Fix shebang for fuzz.rb script file
Last-Update: 2011-04-03
---
tools/fuzz.rb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/fuzz.rb b/tools/fuzz.rb
index 8261930..4aeffb8 100755
--- a/tools/fuzz.rb
+++ b/tools/fuzz.rb
@@ -1,3 +1,5 @@
+#!/usr/bin/env ruby
+
require 'json'
class Fuzzer
|