aboutsummaryrefslogtreecommitdiff
path: root/projects/vboot
diff options
context:
space:
mode:
authorAndrew Robbins <contact@andrewrobbins.info>2017-10-26 02:32:54 -0400
committerAndrew Robbins <contact@andrewrobbins.info>2017-10-28 23:30:01 -0400
commit85934d62d767a484fa560066b6edb69a18145690 (patch)
tree8136b2cdfe3bee1b8ed854d519811e953ca0e4a7 /projects/vboot
parentc3f80f40f9e9b7bc3a57c3ed774dfdc1f46a8196 (diff)
downloadlibrebootfr-85934d62d767a484fa560066b6edb69a18145690.tar.gz
librebootfr-85934d62d767a484fa560066b6edb69a18145690.zip
Replace usage of the '[' Bash builtin with '[['
There's no benefit to using the POSIX-style '[' test builtin considering its '-a' and '-o' operators are unused in the Libreboot build system. Plus, '[[' is safer with respect to any containing file redirections (for example). Prior, both '[' and '[[' were used throughout the codebase--a disparity in usage which this change aims to eliminate.
Diffstat (limited to 'projects/vboot')
-rwxr-xr-xprojects/vboot/vboot12
1 files changed, 6 insertions, 6 deletions
diff --git a/projects/vboot/vboot b/projects/vboot/vboot
index a36791d6..55d28c87 100755
--- a/projects/vboot/vboot
+++ b/projects/vboot/vboot
@@ -75,7 +75,7 @@ build() {
git_project_checkout "$project" "$repository" "$@"
fi
- if [ "$target" = "tools" ]
+ if [[ "$target" = "tools" ]]
then
local sources_path=$( project_sources_path "$project" "$repository" "$@" )
local build_path=$( project_build_path "$project" "$@" )
@@ -92,7 +92,7 @@ build() {
build_check() {
local target=$1
- if [ "$target" = "tools" ]
+ if [[ "$target" = "tools" ]]
then
project_build_check "$project" "$@"
fi
@@ -101,7 +101,7 @@ build_check() {
install() {
local target=$1
- if [ "$target" = "tools" ]
+ if [[ "$target" = "tools" ]]
then
project_install "$project" "$@"
fi
@@ -110,7 +110,7 @@ install() {
install_check() {
local target=$1
- if [ "$target" = "tools" ]
+ if [[ "$target" = "tools" ]]
then
project_install_check "$project" "$@"
fi
@@ -121,7 +121,7 @@ release() {
local repository=$project
- if [ "$target" = "tools" ]
+ if [[ "$target" = "tools" ]]
then
project_release_install_archive "$project" "$TOOLS" "$@"
fi
@@ -134,7 +134,7 @@ release_check() {
local repository=$project
- if [ "$target" = "tools" ]
+ if [[ "$target" = "tools" ]]
then
project_release_install_archive_check "$project" "$TOOLS" "$@"
fi