Skip to content

Commit

Permalink
rewrite so I don't have to deal with dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Toon Willems committed Aug 10, 2012
1 parent 943f360 commit 842870f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions easybuild/tools/filetools.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import easybuild.tools.environment as env
from easybuild.tools.asyncprocess import Popen, PIPE, STDOUT, send_all, recv_some
from easybuild.tools.build_log import getLog
from easybuild.tools.config import logPath


log = getLog('fileTools')
Expand Down Expand Up @@ -93,7 +92,7 @@ def findBaseDir():
"""
def getLocalDirsPurged():
## e.g. always purge the log directory
ignoreDirs = [logPath()]
ignoreDirs = ["easybuild"]

lst = os.listdir(os.getcwd())
for ignDir in ignoreDirs:
Expand Down
2 changes: 1 addition & 1 deletion easybuild/tools/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def addEasyconfig(self, cfg, name, version, stats, previous):

# append a line to the eb file so we don't have git merge conflicts
if not previous:
statstemplate = "\n#Build statistics\nbuildstats=[%s]t\n"
statstemplate = "\n#Build statistics\nbuildstats=[%s]\n"
else:
statstemplate = "\nbuildstats.append(%s)\n"

Expand Down

0 comments on commit 842870f

Please sign in to comment.