Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts/clear.py
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-09-22 13:39:29 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-09-22 13:39:29 (GMT)
commit679eb281556efe188de9075a26bf0c606364f3b4 (patch)
tree49e09aa78a06d104011041f060bcbfcbe8f66f99 /scripts/clear.py
parent7f58a42ba268b12f0be0a4d6dfd28236b78ab44d (diff)
remove unused and probably broken scripts
Diffstat (limited to 'scripts/clear.py')
-rw-r--r--scripts/clear.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/clear.py b/scripts/clear.py
deleted file mode 100644
index cc25e34..0000000
--- a/scripts/clear.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import os
-import shutil
-
-from jhbuild.commands import Command, register_command
-
-class cmd_clear(Command):
-
- name = 'clear'
- usage_args = ''
-
- def run(self, config, options, args):
- if os.path.exists(config.checkoutroot):
- shutil.rmtree(config.checkoutroot)
-
- if os.path.exists(config.prefix):
- shutil.rmtree(config.prefix)
-
-register_command(cmd_clear)