Generate zsync file for Linux updates

This commit is contained in:
Mr. Stallion 2021-12-29 13:13:13 -06:00
parent acfd2bf9cf
commit 08a1cf5690
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ require('electron-packager')({
const stream = fs.createWriteStream(downloaded);
res.data.pipe(stream);
stream.on('close', () => {
const args = [appPaths[0], 'fchat.AppImage', '-u', 'zsync|https://client.f-list.net/fchat.AppImage.zsync'];
const args = [appPaths[0], 'fchat.AppImage', '-u', 'gh-releases-zsync|mrstallion|fchat-rising|latest|F-Chat-Rising-*-linux.AppImage.zsync'];
if(process.argv.length > 2) args.push('-s', '--sign-key', process.argv[2]);
else console.warn('Warning: Creating unsigned AppImage');
if(process.argv.length > 3) args.push('--sign-args', `--no-tty --pinentry-mode loopback --yes --passphrase=${process.argv[3]}`);