diff options
Diffstat (limited to 'tools/boot-keys/boot-keys-helper')
-rwxr-xr-x | tools/boot-keys/boot-keys-helper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/boot-keys/boot-keys-helper b/tools/boot-keys/boot-keys-helper index 5046cbfb..31e2c16b 100755 --- a/tools/boot-keys/boot-keys-helper +++ b/tools/boot-keys/boot-keys-helper @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash KERNEL="kernel" TYPE="type" @@ -15,7 +15,7 @@ boot_keys_cros() { if ! [ -x "$cros_script_path" ] then - printf "$cros_script script missing from cros-scripts install" >&2 + printf '%s' "$cros_script script missing from cros-scripts install" >&2 return 1 fi @@ -45,7 +45,7 @@ boot_keys_files_install_path() { ifs_save=$IFS IFS=$'\n' - for argument in $( echo "$helper_arguments" ) + for argument in $( printf '%s\n' "$helper_arguments" ) do ( IFS=$ifs_save |