diff options
author | EuAndreh <eu@euandre.org> | 2022-01-20 23:33:57 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-21 00:00:19 -0300 |
commit | b8ba151381a6c1113e37455a0870657652d44922 (patch) | |
tree | ce1b7c4a4008b3eb29cd3a7e872359a267ece674 | |
parent | {aux,tests}/lib.sh: Use UUIDs for tmpnames to remove dependency on m4 (diff) | |
download | git-permalink-b8ba151381a6c1113e37455a0870657652d44922.tar.gz git-permalink-b8ba151381a6c1113e37455a0870657652d44922.tar.xz |
aux/workflow/repocheck.sh: Indent output
-rwxr-xr-x | aux/workflow/repocheck.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/aux/workflow/repocheck.sh b/aux/workflow/repocheck.sh index fce31c4..b95272d 100755 --- a/aux/workflow/repocheck.sh +++ b/aux/workflow/repocheck.sh @@ -184,5 +184,9 @@ assert_clean_checkout() { cd - > /dev/null } -assert_clean_clone -assert_clean_checkout +indent() { + sed 's/^/repocheck: /' +} + +assert_clean_clone 2>&1 | indent +assert_clean_checkout 2>&1 | indent |