|
|
@ -259,7 +259,7 @@ class P4Submit(Command): |
|
|
|
|
|
|
|
|
|
|
|
return result |
|
|
|
return result |
|
|
|
|
|
|
|
|
|
|
|
def apply(self, id): |
|
|
|
def applyCommit(self, id): |
|
|
|
if self.directSubmit: |
|
|
|
if self.directSubmit: |
|
|
|
print "Applying local change in working directory/index" |
|
|
|
print "Applying local change in working directory/index" |
|
|
|
diff = self.diffStatus |
|
|
|
diff = self.diffStatus |
|
|
@ -494,7 +494,7 @@ class P4Submit(Command): |
|
|
|
commit = commits[0] |
|
|
|
commit = commits[0] |
|
|
|
commits = commits[1:] |
|
|
|
commits = commits[1:] |
|
|
|
self.config["commits"] = commits |
|
|
|
self.config["commits"] = commits |
|
|
|
self.apply(commit) |
|
|
|
self.applyCommit(commit) |
|
|
|
if not self.interactive: |
|
|
|
if not self.interactive: |
|
|
|
break |
|
|
|
break |
|
|
|
|
|
|
|
|
|
|
|