summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-12-01 17:41:45 +0100
committerDylan William Hardison <dylan@hardison.net>2017-12-01 17:41:54 +0100
commitf94ff1c8e6b4cf8a976a80fdb33cabfd3ca23c4a (patch)
treef50217e325fc1bd5940427b9c2d7df5f60a37127 /scripts
parentaa3f0331fb7e0b97201afb806b777a03c9f2fca2 (diff)
downloadbugzilla-f94ff1c8e6b4cf8a976a80fdb33cabfd3ca23c4a.tar.gz
bugzilla-f94ff1c8e6b4cf8a976a80fdb33cabfd3ca23c4a.tar.xz
fix quotes in conduit script
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generate_conduit_data.pl8
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')"
);
}