diff --git a/unit-files/git-puller.service b/unit-files/git-puller.service
index 651faeddabfed60cd051fd58ffa20cda2512a96b..a03715a029901472809829b93c8ccfcc49f766f3 100644
--- a/unit-files/git-puller.service
+++ b/unit-files/git-puller.service
@@ -5,7 +5,7 @@ Description=Git pull on every git repo
 Type=oneshot
 TimeoutStartSec=0
 ExecStart=/bin/bash -euxc ' \
-  for directory in `find /data/domaians/ -name .git -type d -prune`;do \
+  for directory in `find /data/domains/ -name .git -type d -prune`;do \
     cd $directory; \
     git pull; \
   done'