Meta: Check for Toolchain presence when running makeall.sh

This commit is contained in:
Dan MacDonald 2019-12-04 18:41:53 +00:00 committed by Andreas Kling
parent f2546d15ce
commit f686b5b51b
Notes: sideshowbarker 2024-07-19 10:58:09 +09:00

View file

@ -1,4 +1,9 @@
#!/bin/sh
if [ -z "$SERENITY_ROOT" ]; then
echo "You must source Toolchain/UseIt.sh to build Serenity."
exit 1
fi
set -e
# Get user and group details for setting qemu disk image ownership