mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2025-09-06 18:40:40 +00:00
14 lines
330 B
TypeScript
14 lines
330 B
TypeScript
import { unlinkSync } from 'fs'
|
|
|
|
import { INSTALL_DIR } from '..'
|
|
|
|
export function uninstall() {
|
|
for (const bin of ['restic', 'autorestic'])
|
|
try {
|
|
unlinkSync(INSTALL_DIR + '/' + bin)
|
|
console.log(`Finished! ${bin} was uninstalled`)
|
|
} catch (e) {
|
|
console.log(`${bin} is already uninstalled`.red)
|
|
}
|
|
}
|