We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e35f4e commit bbb8371Copy full SHA for bbb8371
src/venv-cli/venv.sh
@@ -344,7 +344,7 @@ venv::install() {
344
345
# Lock the installed packages into a .lock-file
346
local lock_file="$(venv::_get_lock_from_requirements "${requirements_file}")"
347
- if "${skip_lock}" || [ "${requirements_file}" == "${lock_file}" ]; then
+ if "${skip_lock}" || [ "${requirements_file}" = "${lock_file}" ]; then
348
venv::color_echo "${_yellow}" "Skipping locking packages to ${lock_file}"
349
return "${_success}"
350
fi
0 commit comments