Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15414332
D16273.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
744 B
Referenced Files
None
Subscribers
None
D16273.diff
View Options
diff --git a/src/lint/ArcanistLintPatcher.php b/src/lint/ArcanistLintPatcher.php
--- a/src/lint/ArcanistLintPatcher.php
+++ b/src/lint/ArcanistLintPatcher.php
@@ -42,12 +42,13 @@
// supported under OSX.
if (Filesystem::pathExists($path)) {
// This path may not exist if we're generating a new file.
- execx('cp -p %s %s', $path, $lint);
+ Filesystem::copyFile($path, $lint);
}
Filesystem::writeFile($lint, $data);
- list($err) = exec_manual('mv -f %s %s', $lint, $path);
- if ($err) {
+ try {
+ Filesystem::rename($lint, $path);
+ } catch (FilesystemException $e) {
throw new Exception(
pht(
"Unable to overwrite path '%s', patched version was left at '%s'.",
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 21, 12:10 AM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7378155
Default Alt Text
D16273.diff (744 B)
Attached To
Mode
D16273: Use phutil functions to copy/move files
Attached
Detach File
Event Timeline
Log In to Comment