mirror of
https://github.com/vyvir/althea.git
synced 2026-06-10 17:29:29 -05:00
12 lines
157 B
Bash
Executable File
12 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
althea_PATH="/usr/lib/althea"
|
|
USER=$SUDO_USER
|
|
|
|
if [ -d "$althea_PATH" ]; then
|
|
sudo chown -R "$USER:$USER" "$althea_PATH"
|
|
fi
|
|
exit 0
|