11 lines
201 B
Bash
11 lines
201 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export RUN_ENV='development'
|
||
|
|
||
|
if [ $UID == 0 ]; then
|
||
|
./usr/lib/debian-sources/debian-sources.py
|
||
|
else
|
||
|
export SUDO_ASKPASS=${HOME}/.local/bin/scripts/rofi_password.sh
|
||
|
sudo -E -A $0
|
||
|
fi
|