Skip to content

Instantly share code, notes, and snippets.

@pavelbinar
Created November 30, 2015 17:03
Show Gist options
  • Select an option

  • Save pavelbinar/8a3ad117e94de9dc8d15 to your computer and use it in GitHub Desktop.

Select an option

Save pavelbinar/8a3ad117e94de9dc8d15 to your computer and use it in GitHub Desktop.
install_for_mac_or_for_linux.sh
#!/bin/bash
# Script to launch installer jar based on linux/mac os
unamestr=`uname`
if [[ "$unamestr" == 'Linux' ]]; then
sudo java -jar "${BIN_DIR}/Installer.jar" tv $@
else
sudo java -XstartOnFirstThread -jar "${BIN_DIR}/Installer.jar" tv $@
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment