Skip to content

Commit 4dff168

Browse files
committed
Boot - tweak tau boot scripts
1 parent 477fc3b commit 4dff168

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

app/server/erlang/tau/boot-lin.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
#!/bin/bash
22
set -e # Quit script on error
3-
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4-
3+
SCRIPT_DIR="$(dirname "$0")"
54
cd ${SCRIPT_DIR}
6-
75
echo "Booting Sonic Pi on Linux..."
8-
96
TAU_ENABLED=$1 TAU_INTERNAL=$2 TAU_MIDI_ENABLED=$3 TAU_LINK_ENABLED=$4 TAU_IN_PORT=$5 TAU_API_PORT=$6 TAU_SPIDER_PORT=$7 TAU_DAEMON_PORT=$8 _build/"${MIX_ENV:-dev}"/rel/tau/bin/tau start

app/server/erlang/tau/boot-mac.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
#!/bin/bash
22
set -e # Quit script on error
3-
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4-
3+
SCRIPT_DIR="$(dirname "$0")"
54
cd ${SCRIPT_DIR}
6-
75
echo "Booting Sonic Pi on macOS..."
8-
96
TAU_ENABLED=$1 TAU_INTERNAL=$2 TAU_MIDI_ENABLED=$3 TAU_LINK_ENABLED=$4 TAU_IN_PORT=$5 TAU_API_PORT=$6 TAU_SPIDER_PORT=$7 TAU_DAEMON_PORT=$8 _build/"${MIX_ENV:-dev}"/rel/tau/bin/tau start

0 commit comments

Comments
 (0)