[PATCH] scripts/decode_stacktrace.sh: nix-ify
From: Kent Overstreet
Date: Sat Aug 17 2024 - 17:50:47 EST
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@xxxxxxxxx>
---
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@xxxxxxxxxx>
#set -x
--
2.45.2