This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
cathook/update-nobuild

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