Closed aphelionz closed 5 years ago
When running make rebuld I noticed an error:
make rebuld
$ make rebuild rm -rf ipfs/ rm -rf ipfs-log-benchmarks/ rm -rf node_modules/ rm -rf coverage/ rm -rf test/keystore/ if [ -a package-lock.json ]; then rm package-lock.json; fi; /bin/sh: 1: [: -a: unexpected operator
This PR simply removes the conditional to just use rm -f package-lock.json
rm -f package-lock.json
Description (Required)
When running
make rebuld
I noticed an error:This PR simply removes the conditional to just use
rm -f package-lock.json