Remove additional files on reset
This commit is contained in:
parent
f7d3f228d9
commit
6ea08a43a8
|
@ -80,6 +80,12 @@ if [[ $command_options == "menuconfig"* ]]; then
|
|||
if [ -f $COMPLETION_FILE ]; then
|
||||
rm $COMPLETION_FILE
|
||||
fi
|
||||
if [ -f /usr/share/${PROJECT_NAME}/installed.txt ]; then
|
||||
rm /usr/share/${PROJECT_NAME}/installed.txt
|
||||
fi
|
||||
if [ -f /root/removed ]; then
|
||||
rm /root/removed
|
||||
fi
|
||||
fi
|
||||
|
||||
# clear the interactive file which indicates configuration success
|
||||
|
|
Loading…
Reference in New Issue