10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$EUID" != 0 ]; then
|
|
sudo "$0" "$@"
|
|
exit $?
|
|
fi
|
|
|
|
cp -r ./overlay/* /
|
|
chmod +x /usr/bin/calibration-helper
|
|
chmod +x /usr/bin/launch-calibration |