1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 20:15:08 +00:00

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

View file

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