diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2019-05-06 11:01:03 +0200 |
---|---|---|
committer | Jeremy Cline <jcline@redhat.com> | 2019-05-06 10:26:02 -0400 |
commit | f27f73697ffc50725a59db6f1c36b489f9b3ec84 (patch) | |
tree | e83d571a520e8c3d549a49c45ce7ac1dae0f9b1d /configs | |
parent | eeca86408d9c7f0589632fd6882496eded3330af (diff) | |
download | kernel-f27f73697ffc50725a59db6f1c36b489f9b3ec84.tar.gz kernel-f27f73697ffc50725a59db6f1c36b489f9b3ec84.tar.xz kernel-f27f73697ffc50725a59db6f1c36b489f9b3ec84.zip |
configs: properly indent process_configs.sh
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Diffstat (limited to 'configs')
-rwxr-xr-x | configs/process_configs.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/process_configs.sh b/configs/process_configs.sh index c90b4e171..a2ec3acb0 100755 --- a/configs/process_configs.sh +++ b/configs/process_configs.sh @@ -16,9 +16,9 @@ switch_to_toplevel() path="$(pwd)" while test -n "$path" do - test -e $path/MAINTAINERS && \ - test -d $path/drivers && \ - break + test -e $path/MAINTAINERS && \ + test -d $path/drivers && \ + break path="$(dirname $path)" done |