On 5/7/12 1:06 PM, Richard Esplin wrote: > run_drush_cmd "sql-query \"delete from ldap_servers where sid='ldap1';\""
I would start by changing this to: run_drush_cmd sql-query "delete from ldap_servers where sid='lap1';" And then use "$@" instead of just $@. In addition to the issue of parameters being passed correctly, you're also passing the quotes into the SQL, which is causing the symptom you're seeing. Steve /* PLUG: http://plug.org, #utah on irc.freenode.net Unsubscribe: http://plug.org/mailman/options/plug Don't fear the penguin. */
