greatest commit of all time (part 2)

This commit is contained in:
CoolElectronics 2023-08-18 18:27:23 -04:00
parent 68e16a2ab2
commit d8078da537
No known key found for this signature in database
GPG key ID: F63593D168636C50

View file

@ -9,7 +9,7 @@ if (process.platform == "win32") {
appname += ".exe";
}
https.get(
`https://github.com/MercuryWorkshop/adrift/releases/latest/download/adrift-server-${appname}`, resp => {
`https://github.com/MercuryWorkshop/adrift/releases/latest/download/${appname}`, resp => {
let file = fs.createWriteStream(`${dir}/${appname}`);
resp.pipe(file);