6 lines
116 B
Bash
Executable file
6 lines
116 B
Bash
Executable file
#!/bin/bash
|
|
if [ $(which pkexec) ]; then
|
|
sudo "/usr/bin/calamares" "$@" "-d"
|
|
else
|
|
/usr/bin/calamares "$@" "-d"
|
|
fi
|