Removing config stage file on purge, if the user is using an auto script to generate the config.
This commit is contained in:
parent
5cf91050f2
commit
e554c785c9
|
@ -110,6 +110,11 @@ do
|
||||||
--purge)
|
--purge)
|
||||||
"${0}" --all
|
"${0}" --all
|
||||||
"${0}" --cache
|
"${0}" --cache
|
||||||
|
|
||||||
|
if [ -e scripts/config ]
|
||||||
|
then
|
||||||
|
rm -f .stage/config
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--stage)
|
--stage)
|
||||||
|
|
Loading…
Reference in New Issue