diff options
author | Alexander Sulfrian <alexander.sulfrian@fu-berlin.de> | 2014-04-17 19:07:08 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander.sulfrian@fu-berlin.de> | 2014-04-17 19:07:08 +0200 |
commit | 0518e3e2158e66b0c5240aa79994e356c91f7bee (patch) | |
tree | 1e5f6e782f86e3a66daee19fdc019cd30d1a170b /bashrc/bin | |
parent | 5613ac0dfa0ca5bfd69856371e509f4a1b317bae (diff) | |
download | dotfiles-0518e3e2158e66b0c5240aa79994e356c91f7bee.tar.gz dotfiles-0518e3e2158e66b0c5240aa79994e356c91f7bee.tar.xz dotfiles-0518e3e2158e66b0c5240aa79994e356c91f7bee.zip |
bashrc/bin/t: fix typo
Diffstat (limited to 'bashrc/bin')
-rwxr-xr-x | bashrc/bin/t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bashrc/bin/t b/bashrc/bin/t index 3919af4..e7c73cc 100755 --- a/bashrc/bin/t +++ b/bashrc/bin/t @@ -27,10 +27,10 @@ if [[ "x$1" == x ]] ; then fi if [ -z "$2" -a "$1" != "att" -a "$1" != "ls" ]; then - if teal_tmux has-session -t "$1"; then - exec exec_real_tmux attach-session -t "$1" + if real_tmux has-session -t "$1"; then + exec_real_tmux attach-session -t "$1" else - exec exec_real_tmux new-session -s "$1" + exec_real_tmux new-session -s "$1" fi fi |