From f684615dff99175bdfc17c6422774d7be55ebb99 Mon Sep 17 00:00:00 2001 From: Stan Date: Tue, 17 Jan 2023 10:27:25 +0000 Subject: [PATCH] Update clean-workspaces.sh after SpiderMonkey's upgrade to 78.6.0 and 91.13.1. This was SVN commit r27457. --- build/workspaces/clean-workspaces.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/workspaces/clean-workspaces.sh b/build/workspaces/clean-workspaces.sh index c5881d72cf..fa7a6f626e 100755 --- a/build/workspaces/clean-workspaces.sh +++ b/build/workspaces/clean-workspaces.sh @@ -38,16 +38,17 @@ if [ "$preserve_libs" != "true" ]; then (cd ../../libraries/source/spidermonkey && rm -rf ./lib/*.a && rm -rf ./lib/*.so) (cd ../../libraries/source/spidermonkey && rm -rf ./include-unix-debug) (cd ../../libraries/source/spidermonkey && rm -rf ./include-unix-release) - (cd ../../libraries/source/spidermonkey && rm -rf ./mozjs-68.12.1) + (cd ../../libraries/source/spidermonkey && rm -rf ./mozjs-91.13.1) fi # Still delete the directory of previous SpiderMonkey versions to # avoid wasting disk space if people clean workspaces after updating. +(cd ../../libraries/source/spidermonkey && rm -rf ./mozjs-78.6.0) +(cd ../../libraries/source/spidermonkey && rm -rf ./mozjs-68.12.1) (cd ../../libraries/source/spidermonkey && rm -rf ./mozjs-62.9.1) (cd ../../libraries/source/spidermonkey && rm -rf ./mozjs-52.9.1pre1) (cd ../../libraries/source/spidermonkey && rm -rf ./mozjs-45.0.2) (cd ../../libraries/source/spidermonkey && rm -rf ./mozjs-38.0.0) -(cd ../../libraries/source/spidermonkey && rm -rf ./mozjs-38.0.0) (cd ../../libraries/source/spidermonkey && rm -rf ./mozjs31) (cd ../../libraries/source/spidermonkey && rm -rf ./mozjs24)