From ca6b12763569c3b66601ba676f90b7123dc9d3e9 Mon Sep 17 00:00:00 2001
From: Ravi Tripathi <ravi89@uab.edu>
Date: Tue, 14 Aug 2018 14:12:19 -0500
Subject: [PATCH] Adding README file in the excluded list in clean_env script

---
 bash_array_jobs/clean_env | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bash_array_jobs/clean_env b/bash_array_jobs/clean_env
index c48bbc4..eb25adf 100755
--- a/bash_array_jobs/clean_env
+++ b/bash_array_jobs/clean_env
@@ -6,7 +6,7 @@ import shutil
 def rm_test_dir():
 	cwd = os.getcwd()
 	for filename in os.listdir(cwd):
-		if not (filename.endswith("_env") or filename.endswith("_script") or filename.endswith(".job")):
+		if not (filename.endswith("_env") or filename.endswith("_script") or filename.endswith(".job") or filename.endswith(".md")):
 			if os.path.isfile(filename):
 				os.remove(filename)
 			else:
-- 
GitLab