diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-17 16:52:32 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-17 16:53:23 +0100 |
commit | 3c58181f69ee28c954a8844613dee9d4d576ea2c (patch) | |
tree | 4def181ef60efade519ae0a35305b0f7896a79fe /include/get.sh | |
parent | 01a0217c1e39ef8f665b5499e210fac7d0221416 (diff) |
get.sh: remove useless message
the user doesn't care where the temporary git repo is
git shows that information anyway, in the git clone command
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/get.sh')
-rw-r--r-- | include/get.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/get.sh b/include/get.sh index b83449b7..667ab398 100644 --- a/include/get.sh +++ b/include/get.sh @@ -156,7 +156,6 @@ bad_checksum() tmpclone() { - printf "Creating git clone '%s' from '%s'\n" "$2" "$1" ( x_ git clone "$1" "$2" ) || return 1 ( x_ git -C "$2" reset --hard "$3" ) || return 1 ( fx_ "eval x_ git -C \"$2\" am" find "$4" -type f ) || return 1; : |