mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-04 02:41:53 +00:00
10 lines
254 B
Bash
Executable File
10 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
USERNAME="cutter"
|
|
|
|
echo "Cutter: Starting with UID:GID $LOCAL_USER_ID:$LOCAL_GROUP_ID"
|
|
usermod -u $LOCAL_USER_ID $USERNAME
|
|
usermod -g $LOCAL_GROUP_ID $USERNAME
|
|
export HOME=/home/$USERNAME
|
|
|
|
exec su-exec $USERNAME "/opt/cutter/build/cutter" $@
|