Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jryom committed Dec 13, 2023
1 parent 14a297a commit 0df3deb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 4 additions & 2 deletions etc/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,10 @@ cask "sonos"
cask "spotify"
cask "stats"

mas "Dark Reader for Safari", id: 1438243180
mas "NextDNS", id: 1464122853
if not ENV["CI"]
mas "Dark Reader for Safari", id: 1438243180
mas "NextDNS", id: 1464122853
end

if ENV["XCODE"]
mas "Xcode", id: 497799835
Expand Down
7 changes: 5 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ dotbot:
dotbot --config-file "{{ justfile_directory() }}/etc/dotbot.yaml" --base-directory "{{ justfile_directory() }}" --quiet
homebrew:
/bin/bash -c "NONINTERACTIVE=1 $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
#!/usr/bin/env bash
if ! which brew &>/dev/null; then
NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
brew:
brew bundle install --file="{{ justfile_directory() }}/etc/Brewfile" --force --no-lock
sudo brew bundle install --file="{{ justfile_directory() }}/etc/Brewfile" --force --no-lock

gh:
#!/usr/bin/env bash
Expand Down

0 comments on commit 0df3deb

Please sign in to comment.