Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions easybuild/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
from easybuild.tools.modules import Modules, searchModule
from easybuild.tools.repository import getRepository
from optparse import OptionParser
import easybuild
import easybuild.tools.config as config
import easybuild.tools.filetools as filetools
from easybuild.tools import systemtools
Expand Down Expand Up @@ -671,7 +670,7 @@ def build(module, options, log, origEnviron, exitOnFailure=True):
## Check for errors
if exitCode > 0 or filetools.errorsFoundInLog > 0:
print_msg("\nWARNING: Build exited with exit code %d. %d possible error(s) were detected in the " \
"build logs, please verify the build.\n" % (exitCode, filetools.errorsFoundInLog),
"build logs, please verify the build.\n" % (exitCode, filetools.errorsFoundInLog),
log)

if app.postmsg:
Expand Down
2 changes: 1 addition & 1 deletion easybuild.sh → eb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cd - > /dev/null

export PYTHONPATH="${absolute_path}:$PYTHONPATH"
if [[ "$version" = "2.4" ]]; then
python "`dirname $0`/easybuild/build.py" $@
python "`dirname $0`easybuild/build.py" $@
else
python -m easybuild.build $@
fi