From 849c137a7282d14cb2a6b91d4e54fd1d24ec6f2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= <seblu@seblu.net> Date: Sat, 21 Apr 2018 00:20:22 +0200 Subject: [PATCH] update_config.sh: use vars --- update_config.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/update_config.sh b/update_config.sh index 7a8c5fb..c31c7a3 100755 --- a/update_config.sh +++ b/update_config.sh @@ -1,19 +1,22 @@ #!/bin/bash -e +SRC=src/linux +CONFIG=config.x86_64 + config_equal() { - diff -q -s src/linux/.config config.x86_64 &>/dev/null + diff -q -s "$SRC/.config" "$CONFIG" &>/dev/null } if config_equal; then - (cd src/linux && make menuconfig) + (cd "$SRC" && make menuconfig) else - [[ -e src ]] && rm -rf src + [[ -e "$SRC" ]] && rm -rf "$SRC" makepkg --nobuild --force - (cd src/linux && make oldconfig) + (cd "$SRC" && make oldconfig) fi if ! config_equal; then - cp src/linux/.config config.x86_64 + cp -v "$SRC/.config" "$CONFIG" updpkgsums fi -- GitLab