Last active
September 15, 2016 12:46
-
-
Save ChrisTimperley/e620d9934df2d0c95ff71d51d8fe4f69 to your computer and use it in GitHub Desktop.
Installs CGum and GumTree onto Linux from source
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Assumes Java 8 JDK is already installed | |
# cgum | |
mkdir ~/bin | |
cd ~/bin | |
git clone https://github.com/GumTreeDiff/cgum | |
cd cgum | |
make | |
echo "export PATH=\"\$PATH:$PWD\"" >> ~/.profile | |
cd .. | |
# gumtree | |
git clone https://github.com/GumTreeDiff/gumtree.git | |
cd gumtree | |
./gradlew build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment