summaryrefslogtreecommitdiffstats
path: root/tools/find-build-dir.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/find-build-dir.sh')
-rwxr-xr-xtools/find-build-dir.sh24
1 files changed, 12 insertions, 12 deletions
diff --git a/tools/find-build-dir.sh b/tools/find-build-dir.sh
index 06b6297ea5..fb8a1c17a3 100755
--- a/tools/find-build-dir.sh
+++ b/tools/find-build-dir.sh
@@ -5,28 +5,28 @@ set -e
# we look for subdirectories of the parent directory that look like ninja build dirs.
if [ -n "$BUILD_DIR" ]; then
- echo "$(realpath "$BUILD_DIR")"
- exit 0
+ echo "$(realpath "$BUILD_DIR")"
+ exit 0
fi
root="$(dirname "$(realpath "$0")")"
found=
for i in "$root"/../*/build.ninja; do
- c="$(dirname $i)"
- [ -d "$c" ] || continue
- [ "$(basename "$c")" != mkosi.builddir ] || continue
+ c="$(dirname $i)"
+ [ -d "$c" ] || continue
+ [ "$(basename "$c")" != mkosi.builddir ] || continue
- if [ -n "$found" ]; then
- echo 'Found multiple candidates, specify build directory with $BUILD_DIR' >&2
- exit 2
- fi
- found="$c"
+ if [ -n "$found" ]; then
+ echo 'Found multiple candidates, specify build directory with $BUILD_DIR' >&2
+ exit 2
+ fi
+ found="$c"
done
if [ -z "$found" ]; then
- echo 'Specify build directory with $BUILD_DIR' >&2
- exit 1
+ echo 'Specify build directory with $BUILD_DIR' >&2
+ exit 1
fi
echo "$(realpath $found)"