diff options
author | EuAndreh <eu@euandre.org> | 2025-03-09 17:40:03 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-09 17:40:03 -0300 |
commit | cbb2317ca9bc403882b7b213081a7008d9fc2bbe (patch) | |
tree | ee0ea8250d93266691c12d075ed83767c41c74b1 | |
parent | Add src/cireport (diff) | |
download | cicd-cbb2317ca9bc403882b7b213081a7008d9fc2bbe.tar.gz cicd-cbb2317ca9bc403882b7b213081a7008d9fc2bbe.tar.xz |
src/cicd: If order of printf arguments
-rwxr-xr-x | src/cicd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,5 +50,5 @@ for repo in "$@"; do version $VERSION refname $REFNAME EOF - printf 'Enqueued with id %s for %s\n' "$repo" "$id" + printf 'Enqueued with id %s for %s\n' "$id" "$repo" done |