Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix error and warnings in install script
- Fixed error on line 139 - "==" was being used, whereas sh expects a "=" (and we do this correctly throughout the rest of the file). See https://www.shellcheck.net/wiki/SC3014 for more. - Changed the use of backticks to the use of `$()` as specified in https://www.shellcheck.net/wiki/SC2006 - Changed the use of `-a` to `&&` as specified in https://www.shellcheck.net/wiki/SC2166 Closes rustwasm#1159 Closes rustwasm#1217 Closes rustwasm#1283
- Loading branch information