mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-22 07:20:59 +02:00
Forgot trailing white space
This commit is contained in:
parent
8bed1a975e
commit
cae790171d
@ -18,16 +18,20 @@ Now try to make it accept it
|
|||||||
$ _dotenv_read_answer() { answer='y' }
|
$ _dotenv_read_answer() { answer='y' }
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
Attempting to load unauthorized env: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
echo blah
|
echo blah
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
Would you like to authorize it? (y/n)
|
Would you like to authorize it? (y/n)
|
||||||
blah
|
blah
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The last "blah" is because it executed the command
|
The last "blah" is because it executed the command
|
||||||
|
|
||||||
Now lets see that it actually checks the shasum value
|
Now lets see that it actually checks the shasum value
|
||||||
@ -38,40 +42,48 @@ Now lets see that it actually checks the shasum value
|
|||||||
$ echo "$PWD/.env:$(echo mischief | shasum)" > $ENV_AUTHORIZATION_FILE
|
$ echo "$PWD/.env:$(echo mischief | shasum)" > $ENV_AUTHORIZATION_FILE
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
Attempting to load unauthorized env: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
echo blah
|
echo blah
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
Would you like to authorize it? (y/n)
|
Would you like to authorize it? (y/n)
|
||||||
blah
|
blah
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Now, will it take no for an answer?
|
Now, will it take no for an answer?
|
||||||
|
|
||||||
$ rm $ENV_AUTHORIZATION_FILE
|
$ rm $ENV_AUTHORIZATION_FILE
|
||||||
$ _dotenv_read_answer() { answer='n' }
|
$ _dotenv_read_answer() { answer='n' }
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
Attempting to load unauthorized env: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
echo blah
|
echo blah
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
Would you like to authorize it? (y/n)
|
Would you like to authorize it? (y/n)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Lets also try one more time to ensure it didnt add it
|
Lets also try one more time to ensure it didnt add it
|
||||||
|
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
Attempting to load unauthorized env: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
echo blah
|
echo blah
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
Would you like to authorize it? (y/n)
|
Would you like to authorize it? (y/n)
|
||||||
|
Loading…
Reference in New Issue
Block a user