summarylogtreecommitdiffstats
path: root/brave-nightly-bin.sh
blob: 426a3292941ff15ba3855423892f748faf2834d7 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

if [ -z "$BRAVE_FLAGS" ]; then
    if [[ ! (-r /proc/sys/kernel/unprivileged_userns_clone && $(< /proc/sys/kernel/unprivileged_userns_clone) == 1 && -n $(zcat /proc/config.gz | grep CONFIG_USER_NS=y) ) ]]; then
        >&2 echo "User namespaces are not detected as enabled on your system, brave will run with the sandbox disabled"
        FLAG="--no-sandbox"
    fi
fi
exec "/usr/lib/brave-nightly-bin/brave" "$BRAVE_FLAGS" "$FLAG" "$@"