diff options
author | Leah Rowe <info@minifree.org> | 2017-06-23 15:07:44 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2017-06-23 15:07:44 +0000 |
commit | 363455950f9c351b0a87a31fb5641a635bd352a7 (patch) | |
tree | 430ac9d4cad3058b5ed6703fb27e6bd5c66b21bd /libs/git | |
parent | b2e04a9535832bc682ca69f34b13583ac74d50dc (diff) | |
parent | 46c6ca3b9ee3e545a41b3b0f488885b20a1c65b5 (diff) | |
download | librebootfr-363455950f9c351b0a87a31fb5641a635bd352a7.tar.gz librebootfr-363455950f9c351b0a87a31fb5641a635bd352a7.zip |
Merge branch 'printf-changes' of kragle/libreboot into master
Diffstat (limited to 'libs/git')
-rwxr-xr-x | libs/git | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -214,7 +214,7 @@ git_files() { git_project_repository_path() { local repository=$1 - echo "$root/$SOURCES/$repository" + env printf '%s\n' "$root/$SOURCES/$repository" } git_project_check() { @@ -582,7 +582,7 @@ git_project_release() { local archive_path="$root/$RELEASE/$SOURCES/$project/$release_branch.$TAR_XZ" local sources_path="$root/$SOURCES/$repository" - printf "Releasing sources archive for $project (with ${arguments:-no argument}) from "$repository" git\n" + env printf '%s\n' "Releasing sources archive for $project (with ${arguments:-no argument}) from "$repository" git" git_branch_checkout "$repository_path" "$release_branch" git_submodule_update "$repository_path" |