vaderjs 2.0.8 → 2.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main.js +1 -1
- package/package.json +1 -1
package/main.js
CHANGED
|
@@ -18,7 +18,7 @@ if (platform() === 'win32') {
|
|
|
18
18
|
async function checkIfBunInstalled(){
|
|
19
19
|
return new Promise((resolve, reject) => {
|
|
20
20
|
// dont log spawn output
|
|
21
|
-
const install = spawn('bash', [
|
|
21
|
+
const install = spawn('bash', [ 'curl -fsSL https://bun.sh/install | bash && export PATH=$HOME/.bun/bin:$PATH'], {
|
|
22
22
|
stdio: 'ignore',
|
|
23
23
|
shell: true, // Allows running shell commands
|
|
24
24
|
});
|