mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 16:20:03 +01:00
8 lines
96 B
Bash
8 lines
96 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
BUNDLE_ROOT=$1
|
||
|
|
|
||
|
|
if [[ $(id -u) == 0 ]] ; then
|
||
|
|
chown -R root:admin ${BUNDLE_ROOT}
|
||
|
|
fi
|