diff options
author | Malfurious <m@lfurio.us> | 2023-08-18 13:24:30 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-08-18 13:45:53 -0400 |
commit | 35e4d29694613a3348e5e6d0344a4c6340d95f22 (patch) | |
tree | 816aa78b94214594244866c19a6f7ae0c0a15a12 | |
parent | 1eb6c4158f0ada8378fb4866065cbea1809ab600 (diff) | |
download | cychedelic-35e4d29694613a3348e5e6d0344a4c6340d95f22.tar.gz cychedelic-35e4d29694613a3348e5e6d0344a4c6340d95f22.zip |
acid: source: Display git submodule entries in the log
It can be useful to confirm which submodules (and versions) are present
for a build, and the output isn't all that noisy either. Just 1 or 2
lines should be printed for each submodule.
Signed-off-by: Malfurious <m@lfurio.us>
-rwxr-xr-x | acid/cyche-source | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acid/cyche-source b/acid/cyche-source index 8d80c9c..ee4caca 100755 --- a/acid/cyche-source +++ b/acid/cyche-source @@ -54,7 +54,7 @@ if [ "$prev" != "$next" ]; then git clean -xffd >/dev/null 2>&1 git checkout "$next" >/dev/null 2>&1 - git submodule update --init --recursive >/dev/null 2>&1 + git submodule update --init --recursive >&2 echo -n "Checked out " >&2 git log -1 --oneline --no-abbrev-commit --no-decorate >&2 |