mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 19:37:30 -03:00
Update trunk.sh
This commit is contained in:
parent
9edd2a6bac
commit
c5bf760c63
1 changed files with 11 additions and 0 deletions
11
trunk.sh
11
trunk.sh
|
@ -14,6 +14,17 @@ yell() { echo "$0: $*" >&2; }
|
|||
die() { yell "$*"; exit 111; }
|
||||
try() { "$@" || die "${RED}Failed $*"; }
|
||||
|
||||
# --help
|
||||
displayHelp () {
|
||||
printf "\n" &&
|
||||
printf "${bold}${GRE}Script to Rebase/Sync Chromium repo Linux.${c0}\n" &&
|
||||
printf "\n"
|
||||
}
|
||||
|
||||
case $1 in
|
||||
--help) displayHelp; exit 0;;
|
||||
esac
|
||||
|
||||
printf "\n" &&
|
||||
printf "${YEL}Rebasing/Syncing and running hooks...\n" &&
|
||||
tput sgr0 &&
|
||||
|
|
Loading…
Reference in a new issue