Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nix-darwin/config/homebrew.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"steipete/tap"
];
brews = [
"argo"
"bun"
"claude-squad"
"cliproxyapi"
Expand All @@ -38,11 +39,13 @@
"gemini-cli"
"geth"
"gnupg"
"grafana"
"graphviz"
"helm"
"jjui"
"kimi-cli"
"kurtosis-cli"
"loki"
"mactop"
"mas"
"mlx-lm"
Expand All @@ -67,6 +70,7 @@
"reth"
"sheldon"
"sshpass"
"stripe-cli"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In Homebrew Core, the formula name for the Stripe CLI is stripe, not stripe-cli. Using stripe-cli will cause the installation to fail as it is not a valid formula name in the core tap.

      "stripe"

"temporal"
"tmux"
"trash"
Expand Down
6 changes: 4 additions & 2 deletions spec/npm_globals_spec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,10 @@ EOF

# Installed at the wanted version, but its platform-native optionalDependency
# directory is absent -> must be reinstalled, not skipped.
os_tok=$(uname -s | tr 'A-Z' 'a-z'); [ "$os_tok" = "darwin" ] || os_tok="linux"
cpu_tok=$(uname -m); case "$cpu_tok" in arm64|aarch64) cpu_tok=arm64 ;; *) cpu_tok=x64 ;; esac
os_tok=$(uname -s | tr '[:upper:]' '[:lower:]')
[ "$os_tok" = "darwin" ] || os_tok="linux"
cpu_tok=$(uname -m)
case "$cpu_tok" in arm64 | aarch64) cpu_tok=arm64 ;; *) cpu_tok=x64 ;; esac
mkdir -p "$GM/nativecli"
cat >"$GM/nativecli/package.json" <<EOF
{
Expand Down
Loading