Created
July 2, 2016 21:47
-
-
Save stengland/77bdad404208cbc3ba0d62110dea4194 to your computer and use it in GitHub Desktop.
This file contains hidden or 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/sh | |
if [ ! -d $HOME/.aurbuild ]; then | |
mkdir $HOME/.aurbuild | |
fi | |
cd $HOME/.aurbuild | |
if [ -d $1 ]; then | |
cd $1 | |
git pull | |
else | |
git clone "https://aur.archlinux.org/$1.git" | |
cd $1 | |
fi | |
makepkg -sri |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment