diff options
author | Ferass 'Vitali64' EL HAFIDI <vitali64pmemail@protonmail.com> | 2022-12-28 19:29:18 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2022-12-28 18:43:49 +0000 |
commit | 7f5dfebf7d37c56d9c7993aaa17c59070cb5aec9 (patch) | |
tree | 74c6c01c2d2cc557f7d119bdf8ed4c8875027d72 /resources/scripts/download/coreboot | |
parent | f787044642236917c9c4dbcaa48a6b0648097db0 (diff) |
Do not rely on bashisms and behaviour undefined by the POSIX specification. Part 2
Signed-off-by: Ferass 'Vitali64' EL HAFIDI <vitali64pmemail@protonmail.com>
Diffstat (limited to 'resources/scripts/download/coreboot')
-rwxr-xr-x | resources/scripts/download/coreboot | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/resources/scripts/download/coreboot b/resources/scripts/download/coreboot index 727aacc2..821ee321 100755 --- a/resources/scripts/download/coreboot +++ b/resources/scripts/download/coreboot @@ -1,9 +1,10 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # helper script: download coreboot # # Copyright (C) 2014, 2015, 2016, 2020, 2021 Leah Rowe <info@minifree.org> # Copyright (C) 2022 Alper Nebi Yasak <alpernebiyasak@gmail.com> +# Copyright (C) 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -52,17 +53,17 @@ usage() # In this script, set -u is used to check for undefined variables, and # the test command doesn't do any lazy evaluation, so we can't use -# a syntax like that: [ $# -eq 1 -a "$1" == "--help" ]. +# a syntax like that: [ $# -eq 1 -a "$1" = "--help" ]. -if [ $# -eq 1 ] && [ "$1" == "--help" ] ; then +if [ $# -eq 1 ] && [ "$1" = "--help" ] ; then usage exit 0 -elif [ $# -eq 1 ] && [ "$1" == "--list-boards" ] ; then +elif [ $# -eq 1 ] && [ "$1" = "--list-boards" ] ; then list_supported_boards exit 0 fi -[[ -f build_error ]] && rm -f build_error +[ -f build_error ] && rm -f build_error rm -f resources/coreboot/*/seen @@ -90,7 +91,7 @@ downloadfor() { fi # This is to override $cbrevision and $cbtree - source "resources/coreboot/${board}/board.cfg" || touch ../build_error + . "resources/coreboot/${board}/board.cfg" || touch ../build_error if [ -f build_error ]; then printf "ERROR: download/coreboot: problem sourcing %s/board.cfg\n" "${board}" return 1 |