Skip to content

Commit

Permalink
Fix install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
lk-geimfari committed Dec 23, 2021
2 parents 3da2090 + d06538e commit 425aac2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@ A script for quickly setting up a development environment on the new Macbook. Th

## Installation

You can start the installation with a single command:
It's highly recommended to clone this repository and manually run the install script, like this:

```
git clone https://github.com/lk-geimfari/macbook.git
cd macbook && chmod +x install.sh
./install.sh
```

or you can run remote script file with a single command like this:

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

`exec` is a stable branch which means it can be outdated in comparison with a `master`.

## License

Mimesis is licensed under the MIT License. See [LICENSE](LICENSE) for more information.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ if inquire "🍺 Do you want to install productivity apps (y/n)?"; then
fi

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

0 comments on commit 425aac2

Please sign in to comment.