mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-21 05:35:37 +00:00
DEVELOPER_TOOLBOX: added a check to warn the user about sudo [skip ci]
This commit is contained in:
parent
9eacd5fab3
commit
2ffe0298da
|
@ -2,10 +2,18 @@
|
|||
|
||||
# WARNING: run this script from the project root folder, not from here!!
|
||||
|
||||
# Check if script is running with elevated privileges
|
||||
if [ "$EUID" -ne 0 ]; then
|
||||
echo "The build might fail without some superuser permissions, please run me with sudo. Continue without sudo? [y/N,]"
|
||||
read -r continue_without_sudo
|
||||
if [[ "$continue_without_sudo" != "y" ]]; then
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
git submodule update --init --recursive
|
||||
|
||||
export GITHUB_WORKSPACE="."
|
||||
export $disable_rofiles_fuse="--disable-rofiles-fuse"
|
||||
|
||||
# Initialize the Flatpak repo
|
||||
ostree init --mode=archive-z2 --repo=${GITHUB_WORKSPACE}/retrodeck-repo
|
||||
|
|
Loading…
Reference in a new issue