Add reinstall function to build.sh

pull/197/head
Valters 4 years ago committed by jackun
parent 4721281952
commit cdeee98521
No known key found for this signature in database
GPG Key ID: 119DB3F1D05A9ED3

@ -202,6 +202,12 @@ install() {
echo "MangoHud Installed"
}
reinstall() {
build
package
install
}
clean() {
rm -rf "build"
}
@ -244,6 +250,7 @@ for a in $@; do
"build") build;;
"package") package;;
"install") install;;
"reinstall") reinstall;;
"clean") clean;;
"uninstall") uninstall;;
"release") release;;

Loading…
Cancel
Save