Browse Source

Bashify all variable references

Joshua Boniface 6 years ago
parent
commit
4f14b479bb
1 changed files with 5 additions and 5 deletions
  1. 5 5
      build

+ 5 - 5
build

@@ -50,7 +50,7 @@ fi
 if [[ $1 == '--list-actions' ]]; then
 if [[ $1 == '--list-actions' ]]; then
     platform="$2"
     platform="$2"
     if [[ ! " ${platforms[@]} " =~ " ${platform} " ]]; then
     if [[ ! " ${platforms[@]} " =~ " ${platform} " ]]; then
-        echo "ERROR: Platform $platform does not exist."
+        echo "ERROR: Platform ${platform} does not exist."
         exit 1
         exit 1
     fi
     fi
     echo -e "Available actions for platform ${platform}:"
     echo -e "Available actions for platform ${platform}:"
@@ -78,11 +78,11 @@ else
     echo "ERROR: A platform must be specified. Use 'all' to specify all platforms."
     echo "ERROR: A platform must be specified. Use 'all' to specify all platforms."
     exit 1
     exit 1
 fi
 fi
-if [[ $cli_platform == 'all' ]]; then
+if [[ ${cli_platform} == 'all' ]]; then
     declare -a platform=( ${platforms[@]} )
     declare -a platform=( ${platforms[@]} )
 else
 else
     if [[ ! " ${platforms[@]} " =~ " ${cli_platform} " ]]; then
     if [[ ! " ${platforms[@]} " =~ " ${cli_platform} " ]]; then
-        echo "ERROR: Platform $cli_platform is invalid. Use the '--list-platforms' option to list available platforms."
+        echo "ERROR: Platform ${cli_platform} is invalid. Use the '--list-platforms' option to list available platforms."
         exit 1
         exit 1
     else
     else
         declare -a platform=( "${cli_platform}" )
         declare -a platform=( "${cli_platform}" )
@@ -97,11 +97,11 @@ else
     echo "ERROR: An action must be specified. Use 'all' to specify all actions."
     echo "ERROR: An action must be specified. Use 'all' to specify all actions."
     exit 1
     exit 1
 fi
 fi
-if [[ $cli_action == 'all' ]]; then
+if [[ ${cli_action} == 'all' ]]; then
     declare -a action=( ${actions[@]} )
     declare -a action=( ${actions[@]} )
 else
 else
     if [[ ! " ${actions[@]} " =~ " ${cli_action} " ]]; then
     if [[ ! " ${actions[@]} " =~ " ${cli_action} " ]]; then
-        echo "ERROR: Action $cli_action is invalid. Use the '--list-actions <platform>' option to list available actions."
+        echo "ERROR: Action ${cli_action} is invalid. Use the '--list-actions <platform>' option to list available actions."
         exit 1
         exit 1
     else
     else
         declare -a action=( "${cli_action}" )
         declare -a action=( "${cli_action}" )