Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15444786
D19535.id46707.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D19535.id46707.diff
View Options
diff --git a/src/infrastructure/storage/management/workflow/PhabricatorStorageManagementDestroyWorkflow.php b/src/infrastructure/storage/management/workflow/PhabricatorStorageManagementDestroyWorkflow.php
--- a/src/infrastructure/storage/management/workflow/PhabricatorStorageManagementDestroyWorkflow.php
+++ b/src/infrastructure/storage/management/workflow/PhabricatorStorageManagementDestroyWorkflow.php
@@ -24,21 +24,33 @@
$console = PhutilConsole::getConsole();
if (!$this->isDryRun() && !$this->isForce()) {
- $console->writeOut(
- phutil_console_wrap(
- pht(
- 'Are you completely sure you really want to permanently destroy '.
- 'all storage for Phabricator data? This operation can not be '.
- 'undone and your data will not be recoverable if you proceed.')));
+ if ($args->getArg('unittest-fixtures')) {
+ $console->writeOut(
+ phutil_console_wrap(
+ pht(
+ 'Are you completely sure you really want to destroy all unit '.
+ 'test fixure data? This operation can not be undone.')));
+ if (!phutil_console_confirm(pht('Destroy all unit test data?'))) {
+ $console->writeOut("%s\n", pht('Cancelled.'));
+ exit(1);
+ }
+ } else {
+ $console->writeOut(
+ phutil_console_wrap(
+ pht(
+ 'Are you completely sure you really want to permanently destroy '.
+ 'all storage for Phabricator data? This operation can not be '.
+ 'undone and your data will not be recoverable if you proceed.')));
- if (!phutil_console_confirm(pht('Permanently destroy all data?'))) {
- $console->writeOut("%s\n", pht('Cancelled.'));
- exit(1);
- }
+ if (!phutil_console_confirm(pht('Permanently destroy all data?'))) {
+ $console->writeOut("%s\n", pht('Cancelled.'));
+ exit(1);
+ }
- if (!phutil_console_confirm(pht('Really destroy all data forever?'))) {
- $console->writeOut("%s\n", pht('Cancelled.'));
- exit(1);
+ if (!phutil_console_confirm(pht('Really destroy all data forever?'))) {
+ $console->writeOut("%s\n", pht('Cancelled.'));
+ exit(1);
+ }
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 28, 11:19 AM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7704387
Default Alt Text
D19535.id46707.diff (2 KB)
Attached To
Mode
D19535: Change bin/storage destroy to be less scary when removing test data
Attached
Detach File
Event Timeline
Log In to Comment