Skip to content

Commit 0d4c671

Browse files
committed
add symbolic link
1 parent db5aba3 commit 0d4c671

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Using Homebrew on Apple Silicon M1 (MacOS Big Sur)
22

33
![](macos_m1_cli.jpg)
4-
## `install_homebrew_native.sh`
4+
## install_homebrew_native.sh
55

66
* install Homebrew in native mode (without Rosetta 2) on a fresh Apple M1 Arm computer (MacOS Big Sur)
77
* run as: `curl -s https://raw.githubusercontent.com/pforret/macos_m1_cli/main/install_homebrew_native.sh | bash`
@@ -51,18 +51,22 @@ Error: [some package]: no bottle available!
5151
You can try to install from source with e.g.
5252
brew install --build-from-source [some package]
5353
```
54-
* you then have to `brew install --build-from-source` that dependency first, and run the main brew install again
55-
* or use ...
54+
* you have to `brew install --build-from-source` that dependency first,
55+
and run the main `brew install` again
56+
* you might have to do thius for every missing dependency, or use ...
5657

57-
### `rebrew.sh`
58+
## `rebrew.sh`
5859

5960
* **_recursive_ brew install -s** !!
6061
* `rebrew.sh install ffmpeg` will first look up all the dependencies of ffmpeg,
61-
build those one after the other and then run the main brew install.
62-
It takes some time, but it works!
62+
build those one after the other and then run the main `brew install`.
63+
It will take some time, but it works!
6364

65+
### install rebrew.sh
66+
* `git clone https://github.com/pforret/macos_m1_cli.git && cd macos_m1_cli`
67+
* or `basher install pforret/macos_m1_cli`
6468

65-
## `uninstall_homebrew_native.sh`
69+
## uninstall_homebrew_native.sh
6670

6771
* if you prefer running in 'Rosetta 2' mode, you can uninstall the native mode Homebrew.
6872
* run as: `curl -s https://raw.githubusercontent.com/pforret/macos_m1_cli/main/uninstall_homebrew_native.sh | bash`

VERSION.md

Whitespace-only changes.

rebrew

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rebrew.sh

rebrew.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ do_install(){
101101
| while read -r line; do
102102
if brew list "$line" > /dev/null 2>&1 ; then
103103
# already installed
104-
out "( skip [$line] - already installed )"
104+
out "✔️ skip [$line] (already installed)"
105105
else
106106
announce "install [$line] ------------------------------------------------"
107107
brew install --build-from-source "$line" 2> /dev/null

0 commit comments

Comments
 (0)