diff options
author | Miquel Lionel <lionelmiquel@sfr.fr> | 2020-12-30 10:24:03 +0100 |
---|---|---|
committer | lionelmiquel@sfr.fr <lionel@les-miquelots.net> | 2020-12-30 10:24:03 +0100 |
commit | 257c423f119649e896d2d85c2631d42feb02e6ad (patch) | |
tree | 77aa79bfaefebf042f887eee40a190d52d5b77da | |
parent | 7d15da68885245bee6f84bd609f34127b40085b4 (diff) | |
download | pass.bat-257c423f119649e896d2d85c2631d42feb02e6ad.tar.gz pass.bat-257c423f119649e896d2d85c2631d42feb02e6ad.zip |
some quote were not there, adding them
- specifically in `pass init`
-rw-r--r-- | pass.bat | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -45,13 +45,13 @@ IF ["%1"] EQU ["init"] ( ) ELSE (
md "%PASSWORD_STORE_DIR%\%~1\.extensions"
- echo.%PASSWORD_STORE_KEY%>%PASSWORD_STORE_DIR%\%~1\.gpg-id"
+ echo.%PASSWORD_STORE_KEY%>"%PASSWORD_STORE_DIR%\%~1\.gpg-id"
)
goto :eof
)
IF ["%1"] EQU ["ls"] (
- tree /F %PASSWORD_STORE_DIR%
+ tree /F "%PASSWORD_STORE_DIR%"
goto :eof
)
|