summary refs log tree commit diff
path: root/Documentation
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2024-01-06 12:42:49 +0100
committerAlyssa Ross <hi@alyssa.is>2024-01-06 12:42:49 +0100
commit7b8fcbafe92fd68b208373fae342c8ffe00aa5e0 (patch)
treec44489cb763405d3656a9f75d76b2166e852d926 /Documentation
parent97e2f3429ee61dc37664b4d096b2fec48a57b691 (diff)
downloadspectrum-7b8fcbafe92fd68b208373fae342c8ffe00aa5e0.tar
spectrum-7b8fcbafe92fd68b208373fae342c8ffe00aa5e0.tar.gz
spectrum-7b8fcbafe92fd68b208373fae342c8ffe00aa5e0.tar.bz2
spectrum-7b8fcbafe92fd68b208373fae342c8ffe00aa5e0.tar.lz
spectrum-7b8fcbafe92fd68b208373fae342c8ffe00aa5e0.tar.xz
spectrum-7b8fcbafe92fd68b208373fae342c8ffe00aa5e0.tar.zst
spectrum-7b8fcbafe92fd68b208373fae342c8ffe00aa5e0.zip
.editorconfig: indent shell scripts with tabs
This was already mostly the case, but now it will be consistent.

Signed-off-by: Alyssa Ross <hi@alyssa.is>
Diffstat (limited to 'Documentation')
-rwxr-xr-xDocumentation/scripts/undocumented-uuids.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/scripts/undocumented-uuids.sh b/Documentation/scripts/undocumented-uuids.sh
index aa192e6..739eaf6 100755
--- a/Documentation/scripts/undocumented-uuids.sh
+++ b/Documentation/scripts/undocumented-uuids.sh
@@ -13,7 +13,7 @@ trap 'rm -f -- "$documented_uuids"' EXIT
 
 grep -Eio "$PATTERN" "$UUID_REFERENCE_PATH" | sort -u >"$documented_uuids"
 git ls-files -coz --exclude-standard |
-    grep -Fxvz "$UUID_REFERENCE_PATH" |
-    xargs -0 git grep -Ehio --no-index --no-line-number "$PATTERN" -- |
-    sort -u |
-    comm -23 - "$documented_uuids"
+	grep -Fxvz "$UUID_REFERENCE_PATH" |
+	xargs -0 git grep -Ehio --no-index --no-line-number "$PATTERN" -- |
+	sort -u |
+	comm -23 - "$documented_uuids"