diff options
| author | Mattias Andrée <maandree@operamail.com> | 2013-09-30 03:23:37 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2013-09-30 03:23:37 +0200 |
| commit | 141f6529fddef863accce4cfcf723ddd13ffba65 (patch) | |
| tree | 386c6528da4b26e3d201f5a3123dffd16ee381dd | |
| parent | get rid of python (diff) | |
| download | gates-of-tartaros-141f6529fddef863accce4cfcf723ddd13ffba65.tar.gz gates-of-tartaros-141f6529fddef863accce4cfcf723ddd13ffba65.tar.bz2 gates-of-tartaros-141f6529fddef863accce4cfcf723ddd13ffba65.tar.xz | |
increased extensibility
Signed-off-by: Mattias Andrée <maandree@operamail.com>
| -rwxr-xr-x | got | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -24,6 +24,9 @@ if [ "$1" = "-" ]; then export "$@" + login_function=_login + display_function=_display + function _login { read user @@ -56,8 +59,8 @@ if [ "$1" = "-" ]; then . "@etc@/@command@rc" fi - _display - _login + $display_function + $login_function else # cannot get any other solution to work with `login` # then to spawn a new process with pipes preset |
