Latest
This commit is contained in:
parent
74938d3cac
commit
6585227c26
4 changed files with 4 additions and 4 deletions
|
@ -9,13 +9,13 @@ tap "homebrew/bundle"
|
|||
if OS.mac?
|
||||
brew "coreutils"
|
||||
brew "findutils"
|
||||
brew "gnu-sed"
|
||||
brew "m-cli"
|
||||
end
|
||||
brew "age"
|
||||
brew "glow"
|
||||
brew "gnupg"
|
||||
brew "go"
|
||||
brew "gsed"
|
||||
brew "gum"
|
||||
brew "jq"
|
||||
brew "node"
|
||||
|
|
|
@ -362,7 +362,7 @@ else
|
|||
fi
|
||||
|
||||
# @description Ensure gsed is available on macOS (for modifying `/etc/sudoers` to remove passwordless sudo)
|
||||
if [ -n "$REMOVE_TMP_SUDOERS" ] && [ -d /Applications ] && [ -d /System ]; then
|
||||
if [ -d /Applications ] && [ -d /System ]; then
|
||||
if ! command -v gsed > /dev/null; then
|
||||
if command -v brew > /dev/null; then
|
||||
brew install gsed
|
||||
|
|
|
@ -408,7 +408,7 @@ else
|
|||
fi
|
||||
|
||||
# @description Ensure gsed is available on macOS (for modifying `/etc/sudoers` to remove passwordless sudo)
|
||||
if [ -n "$REMOVE_TMP_SUDOERS" ] && [ -d /Applications ] && [ -d /System ]; then
|
||||
if [ -d /Applications ] && [ -d /System ]; then
|
||||
if ! command -v gsed > /dev/null; then
|
||||
if command -v brew > /dev/null; then
|
||||
brew install gsed
|
||||
|
|
|
@ -286,7 +286,7 @@ else
|
|||
fi
|
||||
|
||||
# @description Ensure gsed is available on macOS (for modifying `/etc/sudoers` to remove passwordless sudo)
|
||||
if [ -n "$REMOVE_TMP_SUDOERS" ] && [ -d /Applications ] && [ -d /System ]; then
|
||||
if [ -d /Applications ] && [ -d /System ]; then
|
||||
if ! command -v gsed > /dev/null; then
|
||||
if command -v brew > /dev/null; then
|
||||
brew install gsed
|
||||
|
|
Loading…
Reference in a new issue