Skip to content

Commit 5d17acb

Browse files
authored
Use bash highlighting for shell commands
1 parent 9dab1ad commit 5d17acb

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,15 @@ Don't forget to commit the submodule changes.
6464

6565
To update the flutter wrapper to the latest version run the install command again:
6666

67-
> `sh -c "$(curl -fsSL https://raw.githubusercontent.com/passsy/flutter_wrapper/master/install.sh)"`
67+
```bash
68+
sh -c "$(curl -fsSL https://raw.githubusercontent.com/passsy/flutter_wrapper/master/install.sh)"
69+
```
6870

6971
To update the flutter wrapper to a specific verssion, use the `-t <tag/branch>` (i.e. `v1.0.0`)
7072

71-
> `sh -c "curl -fsSL https://raw.githubusercontent.com/passsy/flutter_wrapper/master/install.sh" | bash /dev/stdin -t v1.0.0`
73+
```bash
74+
sh -c "curl -fsSL https://raw.githubusercontent.com/passsy/flutter_wrapper/master/install.sh" | bash /dev/stdin -t v1.0.0
75+
```
7276

7377

7478
### Uninstall flutterw
@@ -77,7 +81,9 @@ Sorry to let you go!
7781
Removing submodules is hard, that's why I did the hard work for you.
7882
Simply run this command from the root of your flutter project and the uninstall script will cleanup everything.
7983

80-
> `sh -c "$(curl -fsSL https://raw.githubusercontent.com/passsy/flutter_wrapper/master/uninstall.sh)"`
84+
```bash
85+
sh -c "$(curl -fsSL https://raw.githubusercontent.com/passsy/flutter_wrapper/master/uninstall.sh)"
86+
```
8187

8288
Bye :wave:
8389

0 commit comments

Comments
 (0)