Option -s

-option --nodistract (ou -n) pour exécuter les scripts sans interaction.
-option -s 'script' pour exécuter 1 seul script (i.e -s homebrew, -s node, -s pip...)
This commit is contained in:
2021-12-20 16:00:30 +01:00
parent 97a1005d12
commit b744cd6624
10 changed files with 82 additions and 20 deletions

View File

@@ -15,7 +15,8 @@ display_info=true
declare -a cask_to_not_update=()
# No distract mode (no user interaction)(Casks with 'latest' version number won't be updated)
[[ $@ =~ "--nodistract" ]] && no_distract=true || no_distract=false
#[[ $@ =~ "--nodistract" ]] && no_distract=true || no_distract=false
[[ $@ =~ "-nodistract" || $@ =~ "-n" ]] && no_distract=true || no_distract=false
# Some Casks have auto_updates true or version :latest. Homebrew Cask cannot track versions of those apps.
# 'latest=true' force Homebrew to update those apps.