This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/bin/brew b/bin/brew | |
index 6e4416259..c8ddcc6e2 100755 | |
--- a/bin/brew | |
+++ b/bin/brew | |
@@ -198,12 +198,13 @@ then | |
fi | |
# filter the user environment | |
-PATH="/usr/bin:/bin:/usr/sbin:/sbin" | |
+PATH="/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const os = require("os"); | |
const benchmark = require("nodemark"); | |
const str = "a".repeat(1 << 10); | |
const buffer = Buffer.from(str); | |
const dataView = new DataView(buffer.buffer, buffer.byteOffset, buffer.length); | |
console.log("NodeJS version:", process.version); | |
console.log("CPU name:", os.cpus()[0].model); |
OlderNewer