diff --git a/Makefile b/Makefile
index 0874e09bfed158c08f593ed9cd77bdd48006c08d..40923294f5d21d85b64f00b65d650046acc465b7 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ default:
 	echo "make tarball"
 
 tarball : initInstall.sh installMySQL.sh installNextcloud.env \
-	installNextcloud.sh nextcloudAppsIntallation.sh run.sh \
+	installNextcloud.sh installNextcloudApps.sh run.sh \
 	nextcloudStrongDirectoryPermissions.sh
 	mkdir NoCloud-Auto-Installer
 	cp -r *.sh *.env *.conf DOLIBARR_PACKAGES NoCloud-Auto-Installer
diff --git a/installNextcloud.sh b/installNextcloud.sh
index 53c80d1a02d54ac69a53bb8a469db615117dcdcf..ab0be2659dbd854bb1da5b5bb916dc87c4760938 100644
--- a/installNextcloud.sh
+++ b/installNextcloud.sh
@@ -240,9 +240,9 @@ nextcloud_Install_Options=$(echo ${nextcloud_Install_Options} | tr -s \
 sudo -u www-data php ${NEXTCLOUD_INSTALL_DIR}occ  \
     maintenance:install ${nextcloud_Install_Options}
 
-if [ -f `pwd`/nextcloudAppsInstallation.sh ]
+if [ -f `pwd`/installNextcloudApps.sh ]
 then
-    . `pwd`/nextcloudAppsInstallation.sh
+    . `pwd`/installNextcloudApps.sh
 fi
 
 
diff --git a/nextcloudAppsIntallation.sh b/installNextcloudApps.sh
similarity index 100%
rename from nextcloudAppsIntallation.sh
rename to installNextcloudApps.sh