This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
# You can change the install path here if you like | |
TT_PATH=/opt/tt | |
command -v tar > /dev/null || { echo "'tar' command is required"; exit 1; } | |
command -v wget > /dev/null || { echo "'wget' command is required"; exit 1; } | |
command -v unzip > /dev/null || { echo "'unzip' command is required"; exit 1; } |