~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to repo.py

  • Committer: Alex Launi
  • Date: 2008-06-20 03:02:37 UTC
  • mfrom: (143.1.9 do-plugins)
  • Revision ID: alex@eriktorvaldsonn-20080620030237-lfazo5igw6y935ow
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
REPO_CONFIG = "Debug"
28
28
 
29
29
def main (argv):
 
30
        if "--clean" in argv or "--all" in argv:
 
31
                clean ()
30
32
        if "--make" in argv or "--all" in argv:
31
33
                make ()
32
34
        if "--build" in argv or "--all" in argv:
34
36
        if "--publish" in argv or "--all" in argv:
35
37
                publish ()
36
38
 
 
39
def clean ():
 
40
        system ("rm -rf repo */bin")
 
41
 
37
42
def make ():
38
43
        system ("mdtool build")
39
44