diff options
| author | Leah Rowe <leah@libreboot.org> | 2023-06-20 01:09:11 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2023-06-20 01:09:11 +0100 | 
| commit | 794def924c0659c8855790ca086ce13d2e4d69e0 (patch) | |
| tree | 6facff6127316e9a6c883db9d890e36db68885b4 /resources/scripts | |
| parent | 9510d749e189b0ab77f8ce7ab037f0b6fa69ec47 (diff) | |
build/boot/roms: nicer indent style on switch loop
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'resources/scripts')
| -rwxr-xr-x | resources/scripts/build/boot/roms | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/resources/scripts/build/boot/roms b/resources/scripts/build/boot/roms index 28885e62..3ad1d174 100755 --- a/resources/scripts/build/boot/roms +++ b/resources/scripts/build/boot/roms @@ -53,16 +53,16 @@ main()  	while [ $# -gt 0 ]; do  		case ${1} in -			-d) +		-d)  			opts="${opts} -d ${2}"  			shift ;; -			-p) +		-p)  			opts="${opts} -p ${2}"  			shift ;; -			-k) +		-k)  			opts="${opts} -k ${2}"  			shift ;; -			*) +		*)  			boards="${boards} ${1} " ;;  		esac  		shift | 
