summary refs log tree commit diff
path: root/ssh-command.sh
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-02-25 19:16:56 -0500
committerJune McEnroe <programble@gmail.com>2018-02-25 19:16:56 -0500
commita2e0b6901cb4eef7ad1d78bee0d70c577c61e0f5 (patch)
treea7fe735a4b2b509d89eb8d4c4ff6f492df1439a5 /ssh-command.sh
parentHardcode path lengths in setup (diff)
downloadstream-a2e0b6901cb4eef7ad1d78bee0d70c577c61e0f5.tar.gz
stream-a2e0b6901cb4eef7ad1d78bee0d70c577c61e0f5.zip
Rewrite everything
Diffstat (limited to 'ssh-command.sh')
-rw-r--r--ssh-command.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/ssh-command.sh b/ssh-command.sh
index 8461d3b..84bc350 100644
--- a/ssh-command.sh
+++ b/ssh-command.sh
@@ -6,7 +6,7 @@ GIT_URL=git@ascii.town:stream.git
 
 welcome() {
     echo
-    echo 'Welcome to Twinch!'
+    echo 'Welcome to Twinch dot ptee vee!'
     echo
     echo 'To view a public stream, run one of the following commands:'
     echo
@@ -19,8 +19,8 @@ welcome() {
 }
 
 start() {
-    local key
-    key=$(setup $1)
+    local id
+    id=$(setup $1)
     echo
     echo 'Stream created!'
     echo
@@ -32,8 +32,8 @@ start() {
     echo
     echo "    git clone $GIT_URL"
     echo "    cd stream"
-    echo "    make broadcast"
-    echo "    ./broadcast | ssh $SSH_URL ingest $key"
+    echo "    make ptee"
+    echo "    ./ptee | ssh -t $SSH_URL ingest $id"
     echo
 }