Revert "rename non-usable artifacts #1551"

This reverts commit 194406eed6.
pull/1564/head
Mikael Finstad 2023-04-07 21:31:54 +09:00
rodzic d08c335833
commit 7da308c7d1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 25AB36E3E81CBC26
3 zmienionych plików z 0 dodań i 39 usunięć

Wyświetl plik

@ -138,7 +138,6 @@
"appId": "no.mifi.losslesscut",
"artifactName": "${productName}-${os}-${arch}.${ext}",
"afterSign": "electron-builder-notarize",
"afterAllArtifactBuild": "./script/afterAllArtifactBuild.js",
"mac": {
"hardenedRuntime": true,
"appId": "no.mifi.losslesscut-mac",

Wyświetl plik

@ -1,27 +0,0 @@
const { join, dirname, basename } = require('path');
const { rename } = require('fs/promises');
module.exports = async (buildResult) => {
const newArtifactPaths = [];
// eslint-disable-next-line no-restricted-syntax
for (const artifactPath of buildResult.artifactPaths) {
const artifactName = basename(artifactPath);
// Because many people try to download these files but get confused by it
if (['LosslessCut-win-x64.appx', 'LosslessCut-mac-universal.pkg'].includes(artifactName)) {
const newPath = join(dirname(artifactPath), `${artifactName}-DO-NOT-DOWNLOAD`);
// eslint-disable-next-line no-await-in-loop
await rename(artifactPath, newPath);
newArtifactPaths.push(newPath);
} else {
newArtifactPaths.push(artifactPath);
}
}
// console.log(newArtifactPaths)
// this seems to be the only way to do it
// eslint-disable-next-line no-param-reassign
buildResult.artifactPaths = newArtifactPaths;
};

Wyświetl plik

@ -1,11 +0,0 @@
const afterAllArtifactBuild = require('./afterAllArtifactBuild');
afterAllArtifactBuild({
outDir: '/path/to/lossless-cut/dist',
artifactPaths: [
'/path/to/lossless-cut/dist/LosslessCut-mac-arm64.dmg.blockmap',
'/path/to/lossless-cut/dist/LosslessCut-mac-arm64.dmg',
'/path/to/lossless-cut/dist/LosslessCut-mac-universal.pkg',
'/path/to/lossless-cut/dist/LosslessCut-win-x64.appx',
],
});