|
|
@ -65,8 +65,10 @@ export const main = async (opts) => { |
|
|
|
|
|
|
|
|
|
|
|
if(process.platform === "win32") { |
|
|
|
if(process.platform === "win32") { |
|
|
|
exec(`start ${url}`); |
|
|
|
exec(`start ${url}`); |
|
|
|
} else { |
|
|
|
} else if(process.platform === "darwin") { |
|
|
|
exec(`open ${url}`); |
|
|
|
exec(`open ${url}`); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
warn(`\nOn linux you just open the link yourself:\n${url}\n`); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
question("Register your admin user and hit ENTER."); |
|
|
|
question("Register your admin user and hit ENTER."); |
|
|
|