claude-switch-profile 1.4.21 → 1.4.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Formula/claude-switch-profile.rb +2 -2
- package/README.md +9 -1
- package/package.json +1 -1
|
@@ -3,8 +3,8 @@ require "language/node"
|
|
|
3
3
|
class ClaudeSwitchProfile < Formula
|
|
4
4
|
desc "CLI tool for managing multiple Claude Code profiles"
|
|
5
5
|
homepage "https://github.com/ThanhThi2895/claude-switch-profile"
|
|
6
|
-
url "https://registry.npmjs.org/claude-switch-profile/-/claude-switch-profile-1.4.
|
|
7
|
-
sha256 "
|
|
6
|
+
url "https://registry.npmjs.org/claude-switch-profile/-/claude-switch-profile-1.4.21.tgz"
|
|
7
|
+
sha256 "a76a2c269e592ec1e2c759c8afcbbdd2d4b8955a300a2bb16aea90d48afa74a5"
|
|
8
8
|
license "MIT"
|
|
9
9
|
|
|
10
10
|
depends_on "node"
|
package/README.md
CHANGED
|
@@ -39,7 +39,15 @@ curl -fsSL https://raw.githubusercontent.com/ThanhThi2895/claude-switch-profile/
|
|
|
39
39
|
Leverages Homebrew's own managed cellars to isolate the Node engine:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
brew tap ThanhThi2895/claude-switch-profile
|
|
42
|
+
brew tap ThanhThi2895/claude-switch-profile https://github.com/ThanhThi2895/claude-switch-profile
|
|
43
|
+
brew install claude-switch-profile
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
If you previously hit a tap resolution error, reset then tap again:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
brew untap ThanhThi2895/claude-switch-profile 2>/dev/null || true
|
|
50
|
+
brew tap ThanhThi2895/claude-switch-profile https://github.com/ThanhThi2895/claude-switch-profile
|
|
43
51
|
brew install claude-switch-profile
|
|
44
52
|
```
|
|
45
53
|
|