diff options
author | Leah Rowe <info@minifree.org> | 2017-06-23 18:02:49 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2017-06-23 18:02:49 +0000 |
commit | 4ece4e4999cf2bfcd6b0fb8e67543b299d7c0cd8 (patch) | |
tree | 889014b8974bb439a7a665ce991036ea5d41fd01 /tools/boot-keys/boot-keys-helper | |
parent | bdb6c0e643f9d4b4ce3e0ceba113c04bd45d5116 (diff) | |
parent | 4e50a92041c9f30deef1a32c995b9d5634cbed22 (diff) | |
download | librebootfr-4ece4e4999cf2bfcd6b0fb8e67543b299d7c0cd8.tar.gz librebootfr-4ece4e4999cf2bfcd6b0fb8e67543b299d7c0cd8.zip |
Merge branch 'printf-cleanup' of kragle/libreboot into master
Diffstat (limited to 'tools/boot-keys/boot-keys-helper')
-rwxr-xr-x | tools/boot-keys/boot-keys-helper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/boot-keys/boot-keys-helper b/tools/boot-keys/boot-keys-helper index 05739bbe..d386c8ba 100755 --- a/tools/boot-keys/boot-keys-helper +++ b/tools/boot-keys/boot-keys-helper @@ -15,7 +15,7 @@ boot_keys_cros() { if ! [ -x "$cros_script_path" ] then - env printf '%s' "$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 $( env printf '%s\n' "$helper_arguments" ) + for argument in $( printf '%s\n' "$helper_arguments" ) do ( IFS=$ifs_save |