1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

release-script: Fix shellcheck errors

./release-scripts/build-docs:4:7: error: Double quote array expansions
to avoid re-splitting elements. [SC2068]

Same error for the other scripts.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>

Autobuild-User(master): Pavel Filipensky <pfilipensky@samba.org>
Autobuild-Date(master): Wed Aug 17 11:03:54 UTC 2022 on sn-devel-184
This commit is contained in:
Andreas Schneider 2022-02-23 12:19:19 +01:00 committed by Pavel Filipensky
parent 233a0cd6de
commit e4371a4c3b
5 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
_exit() _exit()
{ {
echo $@ echo "$@"
popd popd
exit 1 exit 1
} }

View File

@ -18,7 +18,7 @@
_exit() _exit()
{ {
echo $@ echo "$@"
popd popd
exit 1 exit 1
} }
@ -50,4 +50,4 @@ rsync -Ca ${DOCS_XML_DIR}/output/htmldocs/manpages/ ${DOCS_DIR}/htmldocs/manpage
echo "Success" echo "Success"
exit exit
# END # END

View File

@ -18,7 +18,7 @@
_exit() _exit()
{ {
echo $@ echo "$@"
popd popd
exit 1 exit 1
} }

View File

@ -18,7 +18,7 @@
_exit() _exit()
{ {
echo $@ echo "$@"
popd popd
exit 1 exit 1
} }

View File

@ -18,7 +18,7 @@
_exit() _exit()
{ {
echo $@ echo "$@"
popd popd
exit 1 exit 1
} }