From 7187bf742554344f4cfd6d6ed70d0695cd45502f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= <gruenich@dune-project.org> Date: Fri, 10 May 2013 14:49:47 +0200 Subject: [PATCH] [dunecontrol] Skip bexec for a module if build directory is not found instead of exiting. --- bin/dunecontrol | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/dunecontrol b/bin/dunecontrol index 807f4b1a3..a1b04ffc6 100755 --- a/bin/dunecontrol +++ b/bin/dunecontrol @@ -252,7 +252,13 @@ done run_default_exec () { bash -c "eval $CMD_FLAGS"; } -run_default_bexec () { bash -c "cd "$BUILDDIR" && eval $CMD_FLAGS"; } +run_default_bexec () { + if test -d "$BUILDDIR"; then + bash -c "cd \"$BUILDDIR\" && eval $CMD_FLAGS"; + else + eval echo "Build directory \\\"$BUILDDIR\\\" not found, skipping bexec for \$NAME_${module}" + fi +} run_default_status () { local verbose=0 -- GitLab