mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
28 lines
867 B
TypeScript
28 lines
867 B
TypeScript
/* eslint-disable no-sync */
|
|
|
|
import * as fs from 'fs'
|
|
import * as cp from 'child_process'
|
|
import { getLogFiles } from './review-logs'
|
|
import { getProductName } from '../app/package-info'
|
|
import { getDistPath, isPublishable } from './dist-info'
|
|
import { isGitHubActions } from './build-platforms'
|
|
|
|
if (isGitHubActions() && process.platform === 'darwin' && isPublishable()) {
|
|
const archive = `${getDistPath()}/${getProductName()}.app`
|
|
try {
|
|
console.log('validating signature of Desktop app')
|
|
cp.execSync(`codesign -dv --verbose=4 '${archive}'`)
|
|
} catch (err) {
|
|
process.exit(1)
|
|
}
|
|
console.log('\n\n')
|
|
}
|
|
|
|
const output = cp.execSync('git config -l --show-origin', { encoding: 'utf-8' })
|
|
console.log(`Git config:\n${output}\n\n`)
|
|
|
|
// delete existing log files
|
|
getLogFiles().forEach(file => {
|
|
console.log(`deleting ${file}`)
|
|
fs.unlinkSync(file)
|
|
})
|