From a3ed5637fc0bbbe281c1e3fd9a28ae6bf9bb879e Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 13 Feb 2018 00:27:56 +0100 Subject: [PATCH] Snake case to be consistent with other functions --- install_yunohost | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_yunohost b/install_yunohost index 00e2c88..aa5173d 100755 --- a/install_yunohost +++ b/install_yunohost @@ -82,7 +82,7 @@ function main() check_assertions step upgrade_system || die "Unable to update the system" - step installscript_dependencies || die "Unable to install dependencies to install script" + step install_script_dependencies || die "Unable to install dependencies to install script" step create_custom_config || die "Creating custom configuration file /etc/yunohost/yunohost.conf failed" step confirm_installation || die "Installation cancelled at your request" step setup_package_source || die "Setting up deb package sources failed" @@ -248,7 +248,7 @@ function upgrade_system() { fi } -function installscript_dependencies() { +function install_script_dependencies() { # dependencies of the install script itself local DEPENDENCIES="lsb-release wget whiptail"