repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git]
/
applications
/
pass-desktop
/
src
/
uninstallers
/
macos
/
uninstall.ts
blob
b134829893b9a87c10d3dadb71304e5034ff5c19
1
import { spawn } from 'child_process';
2
import { join } from 'path';
3
4
export const uninstallProton = () => {
5
const file = join(process.resourcesPath, 'uninstall.sh');
6
spawn(file, { detached: true, stdio: 'ignore' }).unref();
7
};