diff --git a/get_addons b/get_addons
index 6f5bb5bdf0961160845084e61382c1402602d72d..87ad8777895993c20aea13420b5ad374f02a586d 100644
--- a/get_addons
+++ b/get_addons
@@ -5,7 +5,7 @@ set -e
 ODOO_ROOT_DIR=${ODOO_ROOT_DIR:-'/opt/odoo'}
 SAVE_COMMITS_DIR=${SAVE_COMMITS_DIR:-'/opt/odoo_commits'}
 SAVE_COMMITS_FILENAME=${SAVE_COMMITS_FILENAME:-'custom_addons'}
-TMP_REPO_PATH='/tmp/repo'
+TMP_REPO_PATH=${TEMP_REPO_PATH:-'/tmp/repo'}
 
 save_commit() {
   repo="$1"
@@ -37,13 +37,13 @@ fi
 set -e
 
 git -C "${TMP_REPO_PATH}" checkout "${ref}"
-commit="$(git -C /tmp/repo rev-parse HEAD)"
+commit="$(git -C ${TMP_REPO_PATH} rev-parse HEAD)"
 if [ -n "$modules" ]; then
   for module in $modules; do
     if [ -d "${ODOO_ROOT_DIR}/${dst}/${module}" ]; then
       rm -r "${ODOO_ROOT_DIR}/${dst}/${module}"
     fi
-    mv "/tmp/repo/${module}" "${ODOO_ROOT_DIR}/${dst}/"
+    mv "${TMP_REPO_PATH}/${module}" "${ODOO_ROOT_DIR}/${dst}/"
     save_commit "$repo" "$commit" "$module" "$dst"
   done
 else