diff options
author | Leah Rowe <leah@libreboot.org> | 2025-10-16 15:46:44 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-10-16 15:46:44 +0100 |
commit | e1b6ccf69ec42f24d751466cee00b265fe44e899 (patch) | |
tree | b6c8ba5159943a84a8159cf827d6fff82fce9a8f /include/get.sh | |
parent | d84a556bf084b4622cf389847ee3f888bb4dbbe5 (diff) |
xbmk: sort global variables alphabetically
also separate some of the special ones.
this makes the variables easier to read/find.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/get.sh')
-rw-r--r-- | include/get.sh | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/include/get.sh b/include/get.sh index 20ee4fe5..e3e4c311 100644 --- a/include/get.sh +++ b/include/get.sh @@ -3,14 +3,15 @@ # Copyright (c) 2020-2021,2023-2025 Leah Rowe <leah@libreboot.org> # Copyright (c) 2022 Caleb La Grange <thonkpeasant@protonmail.com> -depend="" -loc="" url="" bkup_url="" -subgit="" -subgit_bkup="" + +depend="" +loc="" subcurl="" subcurl_bkup="" +subgit="" +subgit_bkup="" subhash="" tmpgit="$xbtmp/gitclone" @@ -102,12 +103,12 @@ fetch_submodule() { mcfgdir="$mdir/${1##*/}" - subhash="" - subgit="" - subgit_bkup="" + st="" subcurl="" subcurl_bkup="" - st="" + subgit="" + subgit_bkup="" + subhash="" if e "$mcfgdir/module.cfg" f missing; then return 0 |