summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2023-08-18 13:24:30 -0400
committerMalfurious <m@lfurio.us>2023-08-18 13:45:53 -0400
commit35e4d29694613a3348e5e6d0344a4c6340d95f22 (patch)
tree816aa78b94214594244866c19a6f7ae0c0a15a12
parent1eb6c4158f0ada8378fb4866065cbea1809ab600 (diff)
downloadcychedelic-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-xacid/cyche-source2
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