[PATCH] scripts/decode_stacktrace.sh: nix-ify

Kent Overstreet posted 1 patch 1 year, 5 months ago
scripts/decode_stacktrace.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] scripts/decode_stacktrace.sh: nix-ify
Posted by Kent Overstreet 1 year, 5 months ago
nix only puts /usr/bin/env at the standard location (as required by
posix), so shebangs have to be tweaked.

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
---
 scripts/decode_stacktrace.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/decode_stacktrace.sh b/scripts/decode_stacktrace.sh
index a0f50a5b4f7c..ed9f914334cc 100755
--- a/scripts/decode_stacktrace.sh
+++ b/scripts/decode_stacktrace.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 # SPDX-License-Identifier: GPL-2.0
 # (c) 2014, Sasha Levin <sasha.levin@oracle.com>
 #set -x
-- 
2.45.2