Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit 4375c32

Browse files
committed
Fix setup script
1 parent 5356c6a commit 4375c32

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/setup

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ BASE_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE:-$0}")"/.. &>/dev/null && pwd)
55

66
# This prevents git from trying to track a massive amount of files, speeding up git status and other commands
77
find libreoffice-core/translations -type f -exec git update-index --assume-unchanged '{}' +
8-
find libreoffice-core/dictionaries -type f -exec git update-index --assume-unchanged '{}' +
98
find libreoffice-core/helpcontent2 -type f -exec git update-index --assume-unchanged '{}' +
109

1110
# Install qa-env
1211
(cd $BASE_DIR/qa-env && npm install)
1312

1413
# Get the emsdk repo, this isn't a submodule because they're awkward to work with
15-
if [ ! -d $BASE_DIR ]; then
14+
if [ ! -d $BASE_DIR/emsdk ]; then
1615
git clone https://github.com/emscripten-core/emsdk.git || true
1716
cd emsdk || exit 1
1817
else

0 commit comments

Comments
 (0)