$backup_file)), 'backup'); if (substr($backup_file, -2) == 'gz') { $command = "tar -C %s -p -c -z -f %s ."; } else { $command = "tar -C %s -p -c -f %s ."; } $result = provision_shell_exec($command, drush_get_option('sites_path') . "/$url", $backup_file); if (!$result && !drush_get_option('force', false)) { drush_set_error('PROVISION_BACKUP_FAILED', dt("Could not back up sites directory for drupal")); } }