summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2017-01-09 21:27:34 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2017-01-09 21:27:34 +0000
commit9e096d2aedb1c78bc2852967505d16ea68b58542 (patch)
tree8eeabfebcfa4683e6a5858212a266dae206a4ea7
parentFix content-type of emails to correctly set charset (diff)
downloadgentoobrowse-api-9e096d2aedb1c78bc2852967505d16ea68b58542.tar.bz2
gentoobrowse-api-9e096d2aedb1c78bc2852967505d16ea68b58542.tar.xz
gentoobrowse-api-9e096d2aedb1c78bc2852967505d16ea68b58542.zip
Send notifications after update when not in background modegentoobrowse-api-0.7.1
-rw-r--r--gentoobrowse-api/util/update.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/gentoobrowse-api/util/update.cpp b/gentoobrowse-api/util/update.cpp
index e04392d..dbb43ee 100644
--- a/gentoobrowse-api/util/update.cpp
+++ b/gentoobrowse-api/util/update.cpp
@@ -8,7 +8,7 @@ int
main(int c, char ** v)
{
std::string endpoint;
- bool background, tree, bugs, changeLog;
+ bool background, tree, bugs, changeLog, sendNotifications;
po::options_description opts("Gentoo Browse Util::Update options");
opts.add_options()
("endpoint", po::value(&endpoint)->default_value("tcp -p 9001"), "Service endpoint")
@@ -16,6 +16,7 @@ main(int c, char ** v)
("bugs", po::value(&bugs)->default_value(true), "Update bugs")
("tree", po::value(&tree)->default_value(true), "Update tree")
("changeLog", po::value(&changeLog)->default_value(true), "Update change log")
+ ("notifications", po::value(&sendNotifications)->default_value(true), "Send notification emails")
("help,h", "Show help")
;
@@ -51,6 +52,7 @@ main(int c, char ** v)
std::cerr << ex.what() << std::endl;
}
});
+ m->sendNotifications();
}
jobs.clear();