mirror of
https://github.com/YunoHost-Apps/roundcube_ynh.git
synced 2024-09-03 20:16:28 +02:00
Remove remaining sudo prefixes
This commit is contained in:
parent
269500433b
commit
6c081fa038
2 changed files with 3 additions and 3 deletions
|
@ -8,8 +8,8 @@
|
||||||
|
|
||||||
if [ ! -e _common.sh ]; then
|
if [ ! -e _common.sh ]; then
|
||||||
# Get file fonction if not been to the current directory
|
# Get file fonction if not been to the current directory
|
||||||
sudo cp ../settings/scripts/_common.sh ./_common.sh
|
cp ../settings/scripts/_common.sh ./_common.sh
|
||||||
sudo chmod a+rx _common.sh
|
chmod a+rx _common.sh
|
||||||
fi
|
fi
|
||||||
# Source app helpers
|
# Source app helpers
|
||||||
source _common.sh
|
source _common.sh
|
||||||
|
|
|
@ -167,7 +167,7 @@ fi
|
||||||
|
|
||||||
# Install Enigma plugin
|
# Install Enigma plugin
|
||||||
if [[ $with_enigma -eq 1 ]]; then
|
if [[ $with_enigma -eq 1 ]]; then
|
||||||
sudo cp -a "$final_path/plugins/enigma/config.inc.php.dist" "$final_path/plugins/enigma/config.inc.php" \
|
cp -a "$final_path/plugins/enigma/config.inc.php.dist" "$final_path/plugins/enigma/config.inc.php" \
|
||||||
&& installed_plugins+=" 'enigma'," \
|
&& installed_plugins+=" 'enigma'," \
|
||||||
|| echo "Unable to install Enigma plugin" >&2
|
|| echo "Unable to install Enigma plugin" >&2
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue