Kaydet (Commit) 6f573506 authored tarafından Ali Rıza KESKİN's avatar Ali Rıza KESKİN

unibuild permission fix

üst fce46817
#!/bin/bash
if [ "$UID" != "0" ] ; then
if which fakeroot &>/dev/null ; then
exec fakeroot $0 $@
if which unshare && which fakeroot &>/dev/null ; then
exec unshare -U -m --map-root-user fakeroot -- $0 $@
else
echo "Fakeroot not found."
echo "Please install fakeroot or use root."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment