Skip to content

Commit

Permalink
Fix GitHub warning that variables should be defined before their use
Browse files Browse the repository at this point in the history
I was using `$PYTHONPATH` in a context where I cannot expect it to exist.
  • Loading branch information
suricactus committed Dec 21, 2024
1 parent 27a5327 commit 9fa0611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-qgis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ ENV LIBC_FATAL_STDERR_=1
ENV LANG=C.UTF-8
ENV XDG_RUNTIME_DIR=/root
# allow local development for `libqfieldsync`, requires `/libqfieldsync` to be a mounted host directory
ENV PYTHONPATH=/libqfieldsync:${PYTHONPATH}
ENV PYTHONPATH=/libqfieldsync
ENV PYTHONPATH=/qfieldcloud-sdk-python:${PYTHONPATH}

# Install regular dependencies that rarely change
Expand Down

0 comments on commit 9fa0611

Please sign in to comment.