diff options
author | Von Welch <von@vwelch.com> | 2014-04-22 22:15:26 -0400 |
---|---|---|
committer | Von Welch <von@vwelch.com> | 2014-04-22 22:15:26 -0400 |
commit | 4afed67b4579818d1f2314d16047767f48ef7519 (patch) | |
tree | 70103be2e482caff0038002f8ae5b046d8b3c4c5 | |
parent | 14aa5aba9d5451ba21582637ef1aa8060a75e15c (diff) | |
download | pass-4afed67b4579818d1f2314d16047767f48ef7519.tar.gz pass-4afed67b4579818d1f2314d16047767f48ef7519.tar.bz2 pass-4afed67b4579818d1f2314d16047767f48ef7519.zip |
tests: with agent emulation, pass_init() errors if 'pass init' fails
Diffstat (limited to '')
-rwxr-xr-x | tests/setup.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/setup.sh b/tests/setup.sh index d6ba203..df53943 100755 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -54,11 +54,7 @@ pass_init() { fi fi - # This curently returns non-zero for unknown reasons. - # Only happens with stdin set to /dev/null. - # I suspect the agent check. - # TODO: Once fixed, catch non-zero here and fail. - ${PASS} init ${PASSWORD_STORE_KEY} || true + ${PASS} init ${PASSWORD_STORE_KEY} || return 1 echo "Initialization of ${PASSWORD_STORE_DIR} complete." } |