diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-21 15:39:44 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-21 15:39:44 -0500 |
commit | 5eba4661d75f977b46c8db028c0e79241dd36d76 (patch) | |
tree | 5de3223d42d51917200b714f3d3ec7c1a9cbd2b7 /src/share/m/subkey_to_ssh_agent | |
parent | bb8f498db80efcfffdf60ef317254d7355ea54ef (diff) |
fix return in subkey_to_ssh_agent, so that it returns, instead of exits
Diffstat (limited to 'src/share/m/subkey_to_ssh_agent')
-rw-r--r-- | src/share/m/subkey_to_ssh_agent | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/m/subkey_to_ssh_agent b/src/share/m/subkey_to_ssh_agent index a2cf9a0..7fb2fdb 100644 --- a/src/share/m/subkey_to_ssh_agent +++ b/src/share/m/subkey_to_ssh_agent @@ -110,5 +110,5 @@ You might want to 'monkeysphere gen-subkey'" # FIXME: sort out the return values: we're just returning the # success or failure of the final authentication subkey in this # case. What if earlier ones failed? - exit "$keysuccess" + return "$keysuccess" } |