mirror of
https://github.com/RasppleII/a2cloud.git
synced 2024-12-02 05:49:29 +00:00
a3d67123cc
Replaced downloading scripts and files from a2cScriptURL with installation from the source tree. This obsoletes a2cScriptURL, so it's been removed. It made sense to remove the .txt from the script names since I was rewriting the lines that use them anyway.
10 lines
329 B
Bash
Executable File
10 lines
329 B
Bash
Executable File
#! /bin/bash
|
|
# vim: set tabstop=4 shiftwidth=4 noexpandtab filetype=sh:
|
|
|
|
wget -qO /tmp/gsport-setup https://raw.githubusercontent.com/RasppleII/a2cloud/master/setup/gsport-setup
|
|
if [[ $(wc -c /tmp/gsport-setup | grep '^0 ') ]]; then
|
|
echo "Please connect to the internet to set up GSport."
|
|
else
|
|
source /tmp/gsport-setup "$@"
|
|
fi
|