Last active
October 15, 2015 00:18
-
-
Save MaxLeiter/3d58b72385969252f06b to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
list="genkfs mktiupgrade kpack z80e sass" | |
for project in $list; do | |
git clone https://github.com/KnightOS/$project.git | |
done | |
for dir in $list; do | |
pushd $dir | |
if [[ $dir == "sass" ]]; then | |
# If this fails you probably don't have mono installed | |
make; sudo make install | |
popd | |
continue | |
fi | |
cmake .; make; sudo make install | |
popd | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This script is really cool but you forgot the "/" after KnightOS in the git clone command :