Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
fixes typo in bash variable name (#179)
Browse files Browse the repository at this point in the history
Co-authored-by: Wolfgang Miller-Reichling <[email protected]>
  • Loading branch information
wollew and Wolfgang Miller-Reichling authored Nov 1, 2023
1 parent fda5a1f commit 805639f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/bw_auto_lock.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ echo "found workflow v${alfred_workflow_version} at ${wf_dir}" 1>&2
WF_PATH=$(_get_var_from_plist "${prefsplist}" PATH)
[ -n "${WF_PATH}" ] || { echo "Bitwarden CLI Path not set in workflow configuration"; exit 1; }
BW_EXEC=$(_get_var_from_plist "${infoplist}" variables.BW_EXEC)
if ! hash "${bwexec}" 2>/dev/null; then
if ! hash "${BW_EXEC}" 2>/dev/null; then
echo "bw command not found, check PATH env variable"; exit 1;
fi

Expand Down

0 comments on commit 805639f

Please sign in to comment.