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

fixes

üst 0eb6ed51
...@@ -5,10 +5,9 @@ for mod in $(ls $MODDIR) ; do ...@@ -5,10 +5,9 @@ for mod in $(ls $MODDIR) ; do
source $MODDIR/$mod source $MODDIR/$mod
done done
if [ -f "$1" ] ; then if [ -f "$1" ] ; then
source $1 source <(cat $1)
elif "echo $1" | grep "^.*://" &>/dev/null ; then elif echo "$1" | grep "^.*://" &>/dev/null ; then
wget $1 -O /tmp/unibuild.file source <(curl $1)
source /tmp/unibuild.file
else else
echo "Source not detected or not supported." echo "Source not detected or not supported."
exit 1 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