7 lines
247 B
Bash
Executable File
7 lines
247 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#Get updated source code
|
|
git fetch;git pull origin;git submodule update --remote --recursive
|
|
#Update cathook
|
|
cd build; cmake ..; make; cd ..; cd ..
|
|
printf "\n\n";printf '\e[1;34m%-6s\e' "Cathook update complete!";printf "\n\n"
|