#!/bin/bash
OUTPUT=`teleport-hask $@`
# return code 2 is used to indicate that the shell script
# should use the output to warp to
if [[ $? -eq 2 ]]; then
    cd "$OUTPUT"
else
    echo "$OUTPUT"
fi
