Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15415080
D8761.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D8761.diff
View Options
diff --git a/src/workflow/ArcanistBaseWorkflow.php b/src/workflow/ArcanistBaseWorkflow.php
--- a/src/workflow/ArcanistBaseWorkflow.php
+++ b/src/workflow/ArcanistBaseWorkflow.php
@@ -62,6 +62,7 @@
private $command;
private $stashed;
+ private $shouldAmend;
private $projectInfo;
private $repositoryInfo;
@@ -913,7 +914,7 @@
}
if ($must_commit) {
- if ($this->shouldAmend()) {
+ if ($this->getShouldAmend()) {
$commit = head($api->getLocalCommitInformation());
$api->amendCommit($commit['message']);
} else if ($api->supportsLocalCommits()) {
@@ -926,8 +927,11 @@
}
}
- private function shouldAmend() {
- return $this->calculateShouldAmend();
+ private function getShouldAmend() {
+ if ($this->shouldAmend === null) {
+ $this->shouldAmend = $this->calculateShouldAmend();
+ }
+ return $this->shouldAmend;
}
private function calculateShouldAmend() {
@@ -1000,7 +1004,7 @@
}
private function getAskForAddPrompt(array $files) {
- if ($this->shouldAmend()) {
+ if ($this->getShouldAmend()) {
$prompt = pht(
'Do you want to amend these files to the commit?',
count($files));
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 21, 3:53 AM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7714934
Default Alt Text
D8761.diff (1 KB)
Attached To
Mode
D8761: Arcanist - fix shouldAmend code
Attached
Detach File
Event Timeline
Log In to Comment