File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,8 @@ pip3 install pipenv
183
183
# Install certain utility packages like `nodeenv` and `wheel` that aid
184
184
# in the installation of other build tools and dependencies
185
185
# required by the other python packages.
186
- PIPENV_VERBOSITY=-1 PIPENV_PIPFILE=" ${script_dir} /../pulumi/python/Pipfile" pipenv install --dev
186
+ # `pipenv sync` uses only the information in the `Pipfile.lock` ensuring repeatable builds
187
+ PIPENV_VERBOSITY=-1 PIPENV_PIPFILE=" ${script_dir} /../pulumi/python/Pipfile" pipenv sync --dev
187
188
188
189
# Install node.js into virtual environment so that it can be used by Python
189
190
# modules that make call outs to it.
194
195
fi
195
196
196
197
# Install general package requirements
197
- PIPENV_VERBOSITY=-1 PIPENV_PIPFILE=" ${script_dir} /../pulumi/python/Pipfile" pipenv install
198
+ # `pipenv sync` uses only the information in the `Pipfile.lock` ensuring repeatable builds
199
+ PIPENV_VERBOSITY=-1 PIPENV_PIPFILE=" ${script_dir} /../pulumi/python/Pipfile" pipenv sync
198
200
199
201
# Install local common utilities module
200
202
pip3 install " ${script_dir} /../pulumi/python/utility/kic-pulumi-utils"
You can’t perform that action at this time.
0 commit comments