6 lines
180 B
Bash
Executable file
6 lines
180 B
Bash
Executable file
#!/bin/zsh
|
|
source ${$(realpath "$0"):h:h}/lib/next-in-path.zsh
|
|
export PASSWORD_STORE_ENABLE_EXTENSIONS=true
|
|
next=$(next-in-path pass $0)
|
|
if (( $? != 0 )); then exit 1; fi
|
|
$next $@
|