We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad94f55 + 98ed63e commit 6d82618Copy full SHA for 6d82618
3 files changed
scripts/bootstrap
@@ -9,7 +9,7 @@ else
9
cd `dirname $CWD`
10
fi
11
12
-yarn --pure-lockfile --non-interactive install
+yarn --frozen-lockfile --non-interactive install
13
git submodule init
14
git submodule update
15
git status
scripts/patch-docker
@@ -60,7 +60,7 @@ fi
60
61
if [ ! -d node_modules ]; then
62
echo -e "${YELLOW}node_modules folder does not exist - running yarn install${RESET}"
63
- yarn install
+ yarn install --frozen-lockfile
64
echo -e "${CYAN}Building production build of the UI${RESET}"
65
66
scripts/update-dependencies
@@ -17,7 +17,7 @@ git submodule update
17
echo "Done"
18
19
echo -n "Installing Yarn packages..."
20
-yarn install
+yarn install --frozen-lockfile
21
22
23
0 commit comments