diff --git a/.drone.yml b/.drone.yml
index d15806d..f6d43e7 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -8,7 +8,7 @@ steps:
     image: alpine/git
     commands:
       - git submodule update --init --recursive --remote
-      - cat .gitmodules | grep 'path =' | while read -r path; do
+      - cat .gitmodules | grep 'path =' | awk '{ print $3 }'| while read -r path; do
       -    cd "$path"
       -    git pull origin master
       -    cd -