This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 19784ce6 Ensure code can't run
19784ce6 is described below
commit 19784ce66895b1414fb8c942da29de02630c2686
Author: Sebb <[email protected]>
AuthorDate: Fri Jul 15 23:13:24 2022 +0100
Ensure code can't run
---
tools/merge_subscriptions.rb | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/tools/merge_subscriptions.rb b/tools/merge_subscriptions.rb
index 0afd4767..b5213449 100644
--- a/tools/merge_subscriptions.rb
+++ b/tools/merge_subscriptions.rb
@@ -144,14 +144,14 @@ NEW = '/srv/subscriptions2' # new host puts files here
OUT = '/srv/subscriptions' # Whimsy expects the files here
if __FILE__ == $0
- type = ARGV.shift
- if type == 'qmail'
- merge_qmail OLD, NEW, OUT
- elsif type == 'files'
- merge_files OLD, NEW, OUT
- else
- raise "Unexpected merge type: expected 'qmail' or 'files'"
- end
+# type = ARGV.shift
+# if type == 'qmail'
+# merge_qmail OLD, NEW, OUT
+# elsif type == 'files'
+# merge_files OLD, NEW, OUT
+# else
+# raise "Unexpected merge type: expected 'qmail' or 'files'"
+# end
end