summaryrefslogtreecommitdiff
path: root/update-kernel-config
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-10-22 16:32:17 +0200
committerErich Eckner <git@eckner.net>2018-10-22 16:32:17 +0200
commit8325d8755a0b1e2e759c89cda11df544b95fb464 (patch)
tree348b2927a8d0776304b67691609263716ea77a8c /update-kernel-config
parent5a8be17a951e4b7f1c981aa96a8d9b0010713a4b (diff)
downloaddevops-8325d8755a0b1e2e759c89cda11df544b95fb464.tar.xz
update-kernel-config: config_names should not be separated by "\n", but by " "
Diffstat (limited to 'update-kernel-config')
-rwxr-xr-xupdate-kernel-config3
1 files changed, 2 insertions, 1 deletions
diff --git a/update-kernel-config b/update-kernel-config
index 5012979..7439c7d 100755
--- a/update-kernel-config
+++ b/update-kernel-config
@@ -28,7 +28,8 @@ fi
config_names=$(
git -C "${git_repo_path}/$1/$2" archive HEAD -- | \
tar -t | \
- grep '^config\($\|\.\)'
+ grep '^config\($\|\.\)' | \
+ tr '\n' ' '
)
diff=$(