[pass] [PATCH] cygwin + gpg4win: convert paths to windows paths when calling gpg4win binary instead of cygwin's gpg binary

Jason A. Donenfeld Jason at zx2c4.com
Wed Jan 28 16:51:07 CET 2015


On Wed, Jan 28, 2015 at 4:32 PM, Lenz Weber <mail at lenzw.de> wrote:
> -                       exec $GPG -d "${GPG_OPTS[@]}" "$passfile"
> +                       $GPG -d "${GPG_OPTS[@]}" "$passfile" || exit $?

You don't need the "|| exit $?" there.


> diff --git a/src/platform/cygwin.sh b/src/platform/cygwin.sh
> +#replaces Cygwin-style filenames with their Windows counterparts
> +gpg_winpath(){
> +    args=("$@")
> +       #as soon as an argument (from back to front) is no file, it can only be a filename argument if it is preceeded by '-o'
> +       could_be_filenames="true"
> +
> +       for ((i=${#args[@]}-1; i>=0; i--)); do
> +        if ( [ $i -gt 0 ] && [ "${args[$i-1]}" = "-o" ] )  || [ $could_be_filenames = "true" ]; then
> +                       if [ -e  ${args[$i]} ]; then
> +                               args[$i]=$(cygpath -am ${args[$i]})
> +                       else
> +                               could_be_filenames="false"
> +                       fi
> +       fi
> +
> +    done
> +
> +       $GPG_ORIG "${args[@]}"
> +}
> +
> +if $GPG --help | grep -q Gpg4win; then
> +       GPG_ORIG=$GPG
> +       GPG=gpg_winpath
> +fi

Can you clean up the formatting of this? Pass uses tabs.


More information about the Password-Store mailing list