summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2020-11-19 13:35:28 +0100
committerMichael Stahl <michael.stahl@cib.de>2020-11-23 14:35:25 +0100
commit1ab938155c875e65470b9f6b3b3ef65885462f7a (patch)
treeb52f67abe7b7d2ea9fabd732451690ed9f90dd14 /desktop
parentbd5806591b29b7cb9127c96b49d920c4281c37c8 (diff)
desktop: rr --ignore-nested was renamed to --nested=ignore
Change-Id: Id1c1789c24b8eec27db0b24e1e43e2eb7d562509 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106291 Reviewed-by: Michael Stahl <michael.stahl@cib.de> Tested-by: Jenkins
Diffstat (limited to 'desktop')
-rwxr-xr-xdesktop/scripts/soffice.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/scripts/soffice.sh b/desktop/scripts/soffice.sh
index 5538c968ee18..67cc0b89751f 100755
--- a/desktop/scripts/soffice.sh
+++ b/desktop/scripts/soffice.sh
@@ -78,8 +78,8 @@ for arg in "$@" $EXTRAOPT ; do
case "$arg" in
--record)
if which rr >/dev/null 2>&1 ; then
- # smoketest may already be recorded => use ignore-nested
- RRCHECK="rr record --ignore-nested"
+ # smoketest may already be recorded => ignore nested
+ RRCHECK="rr record --nested=ignore"
checks="c$checks"
else
echo "Error: Can't find the tool \"rr\", --record option will be ignored."