commit 4a00b8713c6e271869970be880001bf55940a5b0
parent 44fb0d7feaf1a58cde3dbc853c1b84b528dbc893
Author: gearsix <gearsix@tuta.io>
Date: Fri, 4 Dec 2020 10:55:31 +0000
added -i to rm call in dotfm_remove
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/dotfm.py b/src/dotfm.py
@@ -289,7 +289,7 @@ def dotfm_remove(alias):
if found != -1:
# remove dotfile
target = '{}'.format(os.path.abspath(dfl[0]))
- os.system('rm -v {}'.format(target))
+ os.system('rm -iv {}'.format(target))
# remove from installed
del INSTALLED_DOTFILES[found]
with open(DOTFM_CSV_FILE, 'w') as dotfm_file: