File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -64,11 +64,15 @@ Don't forget to commit the submodule changes.
6464
6565To 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
6971To 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!
7781Removing submodules is hard, that's why I did the hard work for you.
7882Simply 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
8288Bye :wave :
8389
You can’t perform that action at this time.
0 commit comments