Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14061667
D8326.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1001 B
Referenced Files
None
Subscribers
None
D8326.diff
View Options
Index: src/applications/repository/engine/PhabricatorRepositoryRefEngine.php
===================================================================
--- src/applications/repository/engine/PhabricatorRepositoryRefEngine.php
+++ src/applications/repository/engine/PhabricatorRepositoryRefEngine.php
@@ -247,6 +247,11 @@
'{node}\n',
hgsprintf('%s', $new_head));
}
+
+ $stdout = trim($stdout);
+ if (!strlen($stdout)) {
+ return array();
+ }
return phutil_split_lines($stdout, $retain_newlines = false);
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
if ($all_closing_heads) {
@@ -261,6 +266,11 @@
'%H',
$new_head);
}
+
+ $stdout = trim($stdout);
+ if (!strlen($stdout)) {
+ return array();
+ }
return phutil_split_lines($stdout, $retain_newlines = false);
default:
throw new Exception(pht('Unsupported VCS "%s"!', $vcs));
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Nov 19, 7:42 AM (10 h, 6 m ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6716886
Default Alt Text
D8326.diff (1001 B)
Attached To
Mode
D8326: Possibly fix issue where refs engine finds empty refs?
Attached
Detach File
Event Timeline
Log In to Comment