Make config function name more concise

This commit is contained in:
Manuel Thalmann 2024-12-04 18:56:17 +01:00
parent be9750131a
commit eb326ce1cb
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ function backupAction -V dir
end
set -l deployScript (getDeploymentScript)
initConfig --action backup
initBackupConfig --action backup
runHook backupSoftware || begin
echo "Backing up software..."

View file

@ -1,6 +1,6 @@
set -l dir (status dirname)
function initConfig -V dir -d "Fetches the configuration by prompting the user to "
function initBackupConfig -V dir -d "Fetches the configuration by prompting the user to "
set -l disabled VALHALLA_BACKUP_DISABLED
if [ -z "$$disabled" ]