mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
config/options: ban spaces in paths
This commit is contained in:
parent
0111c1d759
commit
35fc18cc9e
@ -4,6 +4,12 @@ if [[ "${EUID}" -eq 0 ]]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Spaces in paths are verboten
|
||||||
|
if [[ ${PWD} =~ [[:space:]] ]]; then
|
||||||
|
echo "Building in a folder that includes spaces is NOT supported. Use a folder without spaces." 1>&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# set default language for buildsystem
|
# set default language for buildsystem
|
||||||
export LC_ALL=C
|
export LC_ALL=C
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user