Skip to content

Commit bbb8371

Browse files
committed
Change '==' to '=' for zsh compatibility
1 parent 2e35f4e commit bbb8371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/venv-cli/venv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ venv::install() {
344344

345345
# Lock the installed packages into a .lock-file
346346
local lock_file="$(venv::_get_lock_from_requirements "${requirements_file}")"
347-
if "${skip_lock}" || [ "${requirements_file}" == "${lock_file}" ]; then
347+
if "${skip_lock}" || [ "${requirements_file}" = "${lock_file}" ]; then
348348
venv::color_echo "${_yellow}" "Skipping locking packages to ${lock_file}"
349349
return "${_success}"
350350
fi

0 commit comments

Comments
 (0)