Skip to content

Commit

Permalink
log files
Browse files Browse the repository at this point in the history
  • Loading branch information
nicole-obrien committed Oct 12, 2023
1 parent 98bb048 commit 6d0354a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/desktop/electron-builder-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ async function notarizeMacos(appBundleId, appName): Promise<void> {
}

console.log('appPath:', path.resolve(__dirname, `../out/mac/${appName}.app`),)
fs.readdir(path.resolve(__dirname, '../out/mac'), (err, files) => {
fs.readdir(path.resolve(__dirname), (err, files) => {
if (err) {
console.error('Error reading directory:', err);
return;
}


console.log('Files at', path.resolve(__dirname, '../out/mac'), ':');
console.log('Files at', path.resolve(__dirname), ':');
files.forEach(file => {
console.log(file);
});
Expand Down

0 comments on commit 6d0354a

Please sign in to comment.