#!/bin/bash

if [ -z "$1" ]
then
    echo "ERROR: No install script specified" >&2
else
    wget -qO- $1 | bash
fi