diff options
| author | Michael Seibt | 2024-02-05 23:40:21 +0000 |
|---|---|---|
| committer | Chuanhong Guo | 2024-02-28 04:31:33 +0000 |
| commit | 404c76f78af21566d338bc5f21145657c560628c (patch) | |
| tree | 586ba685f9e1339804af5a05c63d79f182a9db23 | |
| parent | 9c24a14ffa779d9e69cbeef45c42403b781d94ca (diff) | |
| download | openwrt-404c76f78af21566d338bc5f21145657c560628c.tar.gz | |
build: fix shebang line
Remove space between sharp-exclamation and interpreter.
Signed-off-by: Michael Seibt <github@roboschmie.de>
| -rwxr-xr-x | scripts/patch-kernel.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/patch-kernel.sh b/scripts/patch-kernel.sh index c2b7e72049..52750dde6e 100755 --- a/scripts/patch-kernel.sh +++ b/scripts/patch-kernel.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # A little script I whipped up to make it easy to # patch source trees and have sane error handling # -Erik |