mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-17 18:34:57 +02:00
get.sh: fix broken printf statement
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+2
-2
@@ -127,8 +127,8 @@ try_curl()
|
|||||||
|
|
||||||
try_copy()
|
try_copy()
|
||||||
{
|
{
|
||||||
[ -L "$2" ] && printf "symlink %s (try_cp %s)\n" "$2" "$*" && return 1
|
[ -L "$2" ] && printf "symlink %s (trycp %s)\n" "$2" "$*" && return 1
|
||||||
[ ! -f "$2" ] && "no such file %s (try_cp %s)\n" "$2" "$*" && return 1
|
[ ! -f "$2" ] && printf "%s missing (trycp %s)\n" "$2" "$*" && return 1
|
||||||
( x_ cp "$2" "$1" ) || return 1; :
|
( x_ cp "$2" "$1" ) || return 1; :
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user