Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ else
cd `dirname $CWD`
fi

yarn --pure-lockfile --non-interactive install
yarn --frozen-lockfile --non-interactive install
git submodule init
git submodule update
git status
2 changes: 1 addition & 1 deletion scripts/patch-docker
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fi

if [ ! -d node_modules ]; then
echo -e "${YELLOW}node_modules folder does not exist - running yarn install${RESET}"
yarn install
yarn install --frozen-lockfile
echo -e "${CYAN}Building production build of the UI${RESET}"
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/update-dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ git submodule update
echo "Done"

echo -n "Installing Yarn packages..."
yarn install
yarn install --frozen-lockfile
echo "Done"

echo "Done"
Loading