Skip to content

Commit 9dc178a

Browse files
authored
Switch brew to use core formula #467 (#468)
1 parent 4b2effd commit 9dc178a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@ Find out more at [sq.io](https://sq.io).
3737
### macOS
3838

3939
```shell
40-
brew install neilotoole/sq/sq
40+
brew install sq
4141
```
42+
> [!IMPORTANT]
43+
> `sq` is now a [core brew formula](https://formulae.brew.sh/formula/sq#default). Previously, `sq` was available via `brew install neilotoole/sq/sq`. If you have installed `sq` this way, you should uninstall it (`brew uninstall neilotoole/sq/sq`) before installing the new formula via `brew install sq`.
4244
4345
### Linux
4446

install.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,11 @@ if command_exists brew; then
171171
set -e
172172
printf "Using brew to install sq...\n\n"
173173

174-
brew install neilotoole/sq/sq
174+
# sq is now a core brew formula ("brew install sq"). If it's already installed
175+
# via the old neilotoole/sq tap, uninstall that first.
176+
brew uninstall neilotoole/sq/sq 2> /dev/null || true
177+
178+
brew install sq
175179

176180
printf "\n"
177181
sq version

0 commit comments

Comments
 (0)