mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 11:00:29 +00:00
Meta: Check for Toolchain presence when running makeall.sh
This commit is contained in:
parent
f2546d15ce
commit
f686b5b51b
Notes:
sideshowbarker
2024-07-19 10:58:09 +09:00
Author: https://github.com/danboid Commit: https://github.com/SerenityOS/serenity/commit/f686b5b51b8 Pull-request: https://github.com/SerenityOS/serenity/pull/849
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue