Merge pull request #1646 from hicom150/fix_clean
Fix uninstall handlers in Linux
This commit is contained in:
commit
e49d80fb17
1 changed files with 2 additions and 2 deletions
|
|
@ -355,7 +355,7 @@ function uninstallLinux () {
|
|||
'applications',
|
||||
'webtorrent-desktop.desktop'
|
||||
)
|
||||
rimraf(desktopFilePath)
|
||||
rimraf.sync(desktopFilePath)
|
||||
|
||||
const iconFilePath = path.join(
|
||||
os.homedir(),
|
||||
|
|
@ -364,5 +364,5 @@ function uninstallLinux () {
|
|||
'icons',
|
||||
'webtorrent-desktop.png'
|
||||
)
|
||||
rimraf(iconFilePath)
|
||||
rimraf.sync(iconFilePath)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue