a2cloud/setup/gsport-setup-shell

10 lines
329 B
Plaintext
Raw Normal View History

2015-10-30 12:34:48 +00:00
#! /bin/bash
2016-10-25 17:42:29 +00:00
# vim: set tabstop=4 shiftwidth=4 noexpandtab filetype=sh:
2015-10-30 12:34:48 +00:00
wget -qO /tmp/gsport-setup https://raw.githubusercontent.com/RasppleII/a2cloud/master/setup/gsport-setup
2015-10-30 11:58:34 +00:00
if [[ $(wc -c /tmp/gsport-setup | grep '^0 ') ]]; then
2016-10-25 17:42:29 +00:00
echo "Please connect to the internet to set up GSport."
2015-10-30 11:58:34 +00:00
else
2016-10-25 17:42:29 +00:00
source /tmp/gsport-setup "$@"
2015-10-30 11:58:34 +00:00
fi