Skip to content

Commit 904774b

Browse files
committed
Linux deb: Fix config fragment usage
Fix a typo testing whether there is a local config fragment. This is nasty in that it won't fail even under `set -e` as it's under an if statement. Signed-off-by: Loïc Minier <[email protected]>
1 parent bd3f7f5 commit 904774b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build-linux-deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ done
7474
# the command-line as these might be relative pathnames
7575
cd linux
7676

77-
if [ -r kernel/configs/local.config]; then
77+
if [ -r kernel/configs/local.config ]; then
7878
make ARCH=arm64 "${CONFIG}" local.config
7979
else
8080
make ARCH=arm64 "${CONFIG}"

0 commit comments

Comments
 (0)