sile 0.15.11

Simon’s Improved Layout Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# This entire entry point script is only necessary because GitHub
# actions insists on checking out the project as a non-privileged user,
# running Docker as root, and not allowing us to pass a user argument
# to Docker. It might prove handy for users so they don't have to
# manually pass their user ID at runtime.
if [[ $(id -u) -ne $(stat -c '%u' .) ]]; then
  exec setpriv --clear-groups $(stat -c '--reuid %u --regid %g' .) $0 $@
fi

exec sile $@