diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-12-01 17:41:45 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-12-01 17:41:54 +0100 |
commit | f94ff1c8e6b4cf8a976a80fdb33cabfd3ca23c4a (patch) | |
tree | f50217e325fc1bd5940427b9c2d7df5f60a37127 /scripts | |
parent | aa3f0331fb7e0b97201afb806b777a03c9f2fca2 (diff) | |
download | bugzilla-f94ff1c8e6b4cf8a976a80fdb33cabfd3ca23c4a.tar.gz bugzilla-f94ff1c8e6b4cf8a976a80fdb33cabfd3ca23c4a.tar.xz |
fix quotes in conduit script
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/generate_conduit_data.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/generate_conduit_data.pl b/scripts/generate_conduit_data.pl index 91c5d26ec..df9c0baf2 100755 --- a/scripts/generate_conduit_data.pl +++ b/scripts/generate_conduit_data.pl @@ -149,13 +149,13 @@ write_params() if $params_modified; # Set Phabricator Push Connector Values ########################################################################## print "setting push connector options...\n"; -my ($phab_is_configured) = $dbh->selectrow_array('SELECT COUNT(*) FROM push_options WHERE connector = 'Phabricator''); +my ($phab_is_configured) = $dbh->selectrow_array("SELECT COUNT(*) FROM push_options WHERE connector = 'Phabricator'"); unless ($phab_is_configured) { - $dbh->do('INSERT INTO push_options (connector, option_name, option_value) VALUES ('global','enabled','Enabled')'); + $dbh->do("INSERT INTO push_options (connector, option_name, option_value) VALUES ('global','enabled','Enabled')"); $dbh->do( - 'INSERT INTO push_options (connector, option_name, option_value) VALUES ('Phabricator','enabled','Enabled')'); + "INSERT INTO push_options (connector, option_name, option_value) VALUES ('Phabricator','enabled','Enabled')"); $dbh->do( - 'INSERT INTO push_options (connector, option_name, option_value) VALUES ('Phabricator','phabricator_url','http://phabricator.test')' + "INSERT INTO push_options (connector, option_name, option_value) VALUES ('Phabricator','phabricator_url','http://phabricator.test')" ); } |