From dc646a9749509ce4c52079d456f6967e9ac833b5 Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Tue, 7 Mar 2017 03:01:42 +0100
Subject: [PATCH] ignore generated binary files while debugging

---
 .gitignore       | 3 +++
 epclust/R/main.R | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 90472d7..af4c22c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,6 +14,9 @@
 *~
 *.swp
 
+#ignore binary files generated by claws() [TEMPORARY, DEBUG]
+.epclust_bin/
+
 #ignore R session files
 .Rhistory
 .RData
diff --git a/epclust/R/main.R b/epclust/R/main.R
index b09e934..a982f4c 100644
--- a/epclust/R/main.R
+++ b/epclust/R/main.R
@@ -131,7 +131,7 @@ claws = function(getSeries, K1, K2,
 	nbytes = .toInteger(nbytes, function(x) x==4 || x==8)
 
 	# Serialize series if required, to always use a function
-	bin_dir = ".epclust.bin/"
+	bin_dir = ".epclust_bin/"
 	dir.create(bin_dir, showWarnings=FALSE, mode="0755")
 	if (!is.function(getSeries))
 	{
-- 
2.44.0