Kaydet (Commit) 8ea29e1b authored tarafından sulincix's avatar sulincix

fixes

üst 0eb6ed51
......@@ -5,10 +5,9 @@ for mod in $(ls $MODDIR) ; do
source $MODDIR/$mod
done
if [ -f "$1" ] ; then
source $1
elif "echo $1" | grep "^.*://" &>/dev/null ; then
wget $1 -O /tmp/unibuild.file
source /tmp/unibuild.file
source <(cat $1)
elif echo "$1" | grep "^.*://" &>/dev/null ; then
source <(curl $1)
else
echo "Source not detected or not supported."
exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment