diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-05-19 00:27:10 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-05-19 08:54:03 +0200 |
commit | bc769e793865967d37ef86ffb764f0279ac515da (patch) | |
tree | 516022714aa410ce1fa192746236b9c1c2573e0e /bin | |
parent | 48d3e30748162f6e10dc27ada79dd14179ee5c3f (diff) |
Fix typo
Change-Id: I144687f794b4a6f80d5b8b20e0ce0618030aa0ff
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151985
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/find-unused-data.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-unused-data.sh b/bin/find-unused-data.sh index 8ca4cfc10d6c..0fe343057717 100755 --- a/bin/find-unused-data.sh +++ b/bin/find-unused-data.sh @@ -6,7 +6,7 @@ PATHES="$(find $SCRIPTPATH/.. \( -wholename '*/qa/*/testdocuments' -o -wholename for path in $PATHES do - # Ignore pass/fail/inderterminate folders, functions test in sc, workdir folder and xml in sd + # Ignore pass/fail/indeterminate folders, functions test in sc, workdir folder and xml in sd if [[ "$path" != */pass* ]] && [[ "$path" != */fail* ]] && [[ "$path" != */indeterminate* ]] \ && [[ "$path" != */functions* ]] && [[ "$path" != */workdir* ]] && [[ "$path" != */xml* ]]; then for i in $path/* |