diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/context/lua/mtx-context.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/context/lua/mtx-context.lua b/scripts/context/lua/mtx-context.lua index f726564b4..26dba8a11 100644 --- a/scripts/context/lua/mtx-context.lua +++ b/scripts/context/lua/mtx-context.lua @@ -1688,3 +1688,13 @@ elseif getargument("purgeall") then else application.help("basic") end + +-- we can wipe a signal file when done + +do + + if getargument("wipebusy") then + os.remove("context-is-busy.tmp") + end + +end |