Skip to content

Commit

Permalink
Remove the extra layer of quotes, they screw the embedded sh logic in
Browse files Browse the repository at this point in the history
git filter-branch.
  • Loading branch information
sdboyer committed Feb 21, 2011
1 parent 268206e commit f429047
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions db-migrate-stage1.drush.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,33 +154,33 @@
switch ($project->nid) {
// ubercart_marketplace
case 277418:
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("'rm -rf mp_tokens'") . " -- --all", TRUE);
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("rm -rf mp_tokens") . " -- --all", TRUE);
break;

// adaptive_context
case 176635:
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("'rm -rf ac_access ac_group jqselect'") . " -- --all", TRUE);
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("rm -rf ac_access ac_group jqselect") . " -- --all", TRUE);
break;

// ecommerce
case 5841:
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("'rm -rf contrib/inventorymangement contrib/worldpay'") . " -- --all", TRUE);
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("rm -rf contrib/inventorymangement contrib/worldpay") . " -- --all", TRUE);
break;

// user_board
case 471518:
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("'rm -rf user_board_activity user_board_userpoints user_board_views'") . " -- --all", TRUE);
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("rm -rf user_board_activity user_board_userpoints user_board_views") . " -- --all", TRUE);
break;

// idthemes cluster of bullshit
case 525938:
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("'rm -rf idt001 idt002 idt011 idt012'") . " -- --all", TRUE);
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("rm -rf idt001 idt002 idt011 idt012") . " -- --all", TRUE);
break;
case 525904:
case 525938:
case 526216:
case 526532:
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("'rm -rf branches'") . " -- --all", TRUE);
$job['operation']['passthru'] = array("filter-branch -f --prune-empty --tree-filter " . escapeshellarg("rm -rf branches") . " -- --all", TRUE);
break;
}

Expand Down

0 comments on commit f429047

Please sign in to comment.