15 lines
342 B
Bash
Executable File
15 lines
342 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
git pull origin master
|
|
git submodule update --remote --recursive
|
|
make clean
|
|
|
|
./check-data /opt/cathook/data
|
|
|
|
|
|
## Ask user if they would like to update the menu
|
|
#read -r -p "Update menu? (Y/n) " key
|
|
## If the user chose yes, then we run the script here
|
|
#if [ $key == "y"* ] || [ $key == "Y"* ]; then
|
|
# bash update-menu
|
|
#fi |