You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Document Homebrew formula to Cask migration (#397)
Update Mac installation instructions to use Cask and add migration guide for existing formula users. Addresses #390 by documenting the upgrade path from deprecated formula to Cask version.
Copy file name to clipboardExpand all lines: README.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,23 @@ This is a [blog post](https://owenou.com/upterm) to describe Upterm in depth.
15
15
### Mac
16
16
17
17
```console
18
-
brew install owenthereal/upterm/upterm
18
+
brew install --cask owenthereal/upterm/upterm
19
19
```
20
20
21
+
#### Migrating from Formula to Cask
22
+
23
+
If you previously installed upterm using the Homebrew formula (without `--cask`), you'll need to migrate to the Cask version:
24
+
25
+
```console
26
+
# Uninstall the old formula version
27
+
brew uninstall upterm
28
+
29
+
# Install the new Cask version
30
+
brew install --cask owenthereal/upterm/upterm
31
+
```
32
+
33
+
**Note:** Running `brew upgrade` with the old formula installed will fail with an error. Follow the migration steps above to resolve this.
34
+
21
35
### Standalone
22
36
23
37
`upterm` can be easily installed as an executable. Download the latest [compiled binaries](https://github.com/owenthereal/upterm/releases) and put it in your executable path.
0 commit comments