diff --git a/deploy_app.sh b/deploy_app.sh
index 850d314299ecca3d06e0d6b15e7b37a26dc888a5..393f27d2f68e0e8bfc1f2dfe27a59d390b6b9ddf 100755
--- a/deploy_app.sh
+++ b/deploy_app.sh
@@ -5,6 +5,7 @@
 #
 # ----------------------------------------------------------------------
 # 2021-04-19  v0.1  <axel.hahn@iml.unibe.ch>  initial version
+# 2021-05-09  v0.2  <axel.hahn@iml.unibe.ch>  chown includes dot files
 # ======================================================================
 
 
@@ -198,8 +199,8 @@ run_task "${profiledir}/tasks_config.sh"
 # ----------------------------------------------------------------------
 header "Set file owner [${appowner}]"
 if [ ! -z "${appowner}" ]; then
-    sudo chown -R $appowner * || exit 5
-    ls -l
+    sudo chown -R $appowner * .* || exit 5
+    ls -la
 else
     echo "SKIP: variable appowner was not set"
 fi