summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2008-08-05 12:14:56 -0400
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2008-08-05 12:14:56 -0400
commit148ebb6e7b4c370cdfbbfeed1de88741ceac6f5f (patch)
tree3967afd141f195dc919c4b65401b173dc70a948b
parentb3a3c5de37f18d1b3fcc260e8bb6259edf0bed34 (diff)
little more gum testing
-rw-r--r--gum8
-rw-r--r--pusher.py2
2 files changed, 5 insertions, 5 deletions
diff --git a/gum b/gum
index 0186ddb..7f1e57a 100644
--- a/gum
+++ b/gum
@@ -57,7 +57,7 @@ class Repos(object):
p = subprocess.Popen(branches_cmd, shell=True,
stdin=subprocess.PIPE, stdout=subprocess.PIPE)
output = p.communicate()[0]
- # print output
+ print "output", output
branch_names = output.splitlines()
for branch_name_bits in branch_names:
# print branch_name
@@ -73,17 +73,17 @@ class Repos(object):
def add_remote(self, names):
for name in names:
- add_cmd = "echo git remote add %s %s" % (name, self.remotes[name])
+ add_cmd = "git remote add %s %s" % (name, self.remotes[name])
p = subprocess.Popen(add_cmd, shell=True,
stdin=subprocess.PIPE, stdout=subprocess.PIPE)
output = p.communicate()
- fetch_cmd = "echo git fetch %s" % name
+ fetch_cmd = "git fetch %s" % name
p = subprocess.Popen(fetch_cmd, shell=True,
stdin=subprocess.PIPE, stdout=subprocess.PIPE)
output = p.communicate()
- branches = self.find_remote_branches(name)
+# branches = self.find_remote_branches(name)
diff --git a/pusher.py b/pusher.py
index 4aab643..4fbd5cd 100644
--- a/pusher.py
+++ b/pusher.py
@@ -24,7 +24,7 @@ Work in progress
"""
# if new releases come out or old ones go away, edit here
-PROCESS_RELEASES = [ "devel", "F-9", "F-8", "F-7", "EL-5", "EL-4" ]
+PROCESS_RELEASES = [ "devel", "F-9", "F-8", "EL-5", "EL-4" ]
import optparse
import os