Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make set-max-old-space-size.sh compatible with sh
The . operator defaults to the current shell and ignores the shebang so in non-bash shells, it is not bash that will be used, which can result in the following script failure: ``` > . scripts/set-max-old-space-size.sh && hardhat test sh: 8: scripts/set-max-old-space-size.sh: [[: not found ``` The shebang could be respected by avoiding sourcing but a better option is to simply remove the bash dependency from the script since it is not required.
- Loading branch information