Allow using StorageFixtureScopeGuard on Windows
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
ALTER TABLE `{$NAMESPACE}_draft`.`draft`
|
||||
ADD `metadata` longtext NOT NULL DEFAULT '' AFTER `draft`;
|
||||
ADD `metadata` longtext AFTER `draft`;
|
||||
|
||||
UPDATE `{$NAMESPACE}_draft`.`draft` SET `metadata` = '[]';
|
||||
|
||||
@@ -27,7 +27,7 @@ final class PhabricatorStorageFixtureScopeGuard {
|
||||
$this->name = $name;
|
||||
|
||||
execx(
|
||||
'%s upgrade --force --namespace %s',
|
||||
'php %s upgrade --force --namespace %s',
|
||||
$this->getStorageBinPath(),
|
||||
$this->name);
|
||||
|
||||
@@ -41,14 +41,14 @@ final class PhabricatorStorageFixtureScopeGuard {
|
||||
PhabricatorLiskDAO::popStorageNamespace();
|
||||
|
||||
execx(
|
||||
'%s destroy --force --namespace %s',
|
||||
'php %s destroy --force --namespace %s',
|
||||
$this->getStorageBinPath(),
|
||||
$this->name);
|
||||
}
|
||||
|
||||
private function getStorageBinPath() {
|
||||
$root = dirname(phutil_get_library_root('phabricator'));
|
||||
return $root.'/bin/storage';
|
||||
return $root.'/scripts/sql/manage_storage.php';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user