Skip to content

Instantly share code, notes, and snippets.

@VirtuBox
Last active October 23, 2019 09:32
Show Gist options
  • Select an option

  • Save VirtuBox/04957b0ecaf0dbd40249040d721a6444 to your computer and use it in GitHub Desktop.

Select an option

Save VirtuBox/04957b0ecaf0dbd40249040d721a6444 to your computer and use it in GitHub Desktop.
wo testing script

Install EEv3

bash <(wget -O - gist.githubusercontent.com/VirtuBox/04957b0ecaf0dbd40249040d721a6444/raw/eev3.sh)

Install Wo

curl -sL git.io/Je0U5 | sudo -E bash

Install Wo Edge

bash <(wget -O - git.io/fjdC6)

Fast Update

curl -sL git.io/fjFq0 | sudo -E bash
#!/bin/bash
apt-get -qq autoremove
apt-get update
sudo bash -c 'echo -e "[user]\n\tname = abc\n\temail = root@localhost.com" > /home/travis/.gitconfig'
apt-get install -y --force-yes git python3-setuptools python3-dev python3-apt
wget -O ee https://raw.githubusercontent.com/EasyEngine/easyengine/develop-v3/install
bash ee develop-v3
#!/bin/bash
if [ -d $HOME/WordOps ]; then
git -C $HOME/WordOps stash
git -C $HOME/WordOps pull origin updating-configuration
else
git clone --depth=1 --branch=updating-configuration https://github.com/WordOps/WordOps.git $HOME/WordOps
fi
rm -rf /usr/local/lib/python3.*/dist-packages/wo-*
rm -rf /usr/local/lib/python3.*/dist-packages/wordops*
cd $HOME/WordOps
python3 setup.py install
#!/bin/bash
[ ! -f "$HOME/.gitconfig" ] && {
sudo bash -c 'echo -e "[user]\n\tname = $USER\n\temail = root@wops.cc" > $HOME/.gitconfig'
}
if [ -d $HOME/WordOps ]; then
rm -rf $HOME/WordOps
else
git clone --depth=50 --branch=edge https://github.com/WordOps/WordOps.git $HOME/WordOps
fi
rm -rf /usr/local/lib/python3.*/dist-packages/wo-*
cd $HOME/WordOps
sudo bash install -b edge --force
#!/bin/bash
[ ! -f "$HOME/.gitconfig" ] && {
sudo bash -c 'echo -e "[user]\n\tname = $USER\n\temail = root@wops.cc" > $HOME/.gitconfig'
}
if [ -d "$HOME/WordOps" ]; then
git -C "$HOME/WordOps" stash
git -C "$HOME/WordOps" pull origin updating-configuration
else
git clone --depth=1 --branch=updating-configuration https://github.com/WordOps/WordOps.git "$HOME/WordOps"
fi
cd "$HOME/WordOps" || exit 1
sudo bash install --travis --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment