Skip to content

Commit 425aac2

Browse files
committed
Fix install.sh
2 parents 3da2090 + d06538e commit 425aac2

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,15 @@ A script for quickly setting up a development environment on the new Macbook. Th
1212

1313
## Installation
1414

15-
You can start the installation with a single command:
15+
It's highly recommended to clone this repository and manually run the install script, like this:
16+
17+
```
18+
git clone https://github.com/lk-geimfari/macbook.git
19+
cd macbook && chmod +x install.sh
20+
./install.sh
21+
```
22+
23+
or you can run remote script file with a single command like this:
1624

1725
```bash
1826
bash <(curl https://git.io/JD1xV -sSfL)
@@ -24,6 +32,8 @@ which is shortened version of:
2432
bash <(curl https://raw.githubusercontent.com/lk-geimfari/macbook/exec/install.sh -sSf)
2533
```
2634

35+
`exec` is a stable branch which means it can be outdated in comparison with a `master`.
36+
2737
## License
2838

2939
Mimesis is licensed under the MIT License. See [LICENSE](LICENSE) for more information.

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ if inquire "🍺 Do you want to install productivity apps (y/n)?"; then
9595
fi
9696

9797
if inquire "⚙️ Do you want to install Brave Browser (y/n)?"; then
98-
success "🦁 Installing Mozilla Brave Browser..."
98+
success "🦁 Installing Brave Browser..."
9999
brew install --cask brave-browser
100100
fi
101101
else

0 commit comments

Comments
 (0)