Page MenuHomePhabricator

D16273.id39155.diff
No OneTemporary

D16273.id39155.diff

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

Mime Type
text/plain
Expires
Fri, Mar 28, 8:11 AM (5 d, 18 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7378155
Default Alt Text
D16273.id39155.diff (744 B)

Event Timeline