1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:27:35 +00:00

Meta: Provide the correct path for e2fsck on SerenityOS

This commit is contained in:
Tim Schumacher 2022-06-30 20:50:01 +02:00 committed by Linus Groh
parent 139f871781
commit 92bf442d83

View file

@ -45,6 +45,8 @@ if [ "$(uname -s)" = "Darwin" ]; then
export PATH="/opt/homebrew/opt/e2fsprogs/sbin:$PATH"
E2FSCK="e2fsck"
elif [ "$(uname -s)" = "SerenityOS" ]; then
E2FSCK="/usr/local/sbin/e2fsck"
else
E2FSCK="/usr/sbin/e2fsck"