Browse Source

verify Fixed a bug with the stop command for plain

Mike Smith 11 years ago
parent
commit
9caeab6005
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plain/setup.py

+ 1 - 1
plain/setup.py

@@ -33,6 +33,6 @@ def stop(logfile, errfile):
   if os.name == 'nt':
   if os.name == 'nt':
     subprocess.check_call("del /f /s /q target && del /f /s /q project", shell=True, cwd="plain", stderr=errfile, stdout=logfile)
     subprocess.check_call("del /f /s /q target && del /f /s /q project", shell=True, cwd="plain", stderr=errfile, stdout=logfile)
   else:
   else:
-    subprocess.check_call("rm -rf target && rm -rf project", shell=True, cwd="plain", stderr=errfile, stdout=logfile)
+    subprocess.check_call("rm -rf target && rm -rf project/.ivy && rm -rf project/.boot", shell=True, cwd="plain", stderr=errfile, stdout=logfile)
   
   
   return 0
   return 0