Skip to content

Commit

Permalink
hotfix non-recursive vcs import
Browse files Browse the repository at this point in the history
  • Loading branch information
lreiher committed Oct 11, 2023
1 parent 81ba94c commit 6595455
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ RUN apt-get update && \

ARG VCS_IMPORT_FILE=".repos"
ARG ENABLE_RECURSIVE_VCS_IMPORT="true"
RUN if [[ $ENABLE_RECURSIVE_ADDITIONAL_DEBS == 'true' ]]; then \
RUN if [[ $ENABLE_RECURSIVE_VCS_IMPORT == 'true' ]]; then \
/usr/local/bin/recursive_vcs_import.py src src/upstream ; \
else \
vcs import src/upstream < src/target/${VCS_IMPORT_FILE} ; \
[[ -f src/target/${VCS_IMPORT_FILE} ]] && vcs import src/upstream < src/target/${VCS_IMPORT_FILE} ; \
fi

# remove blacklisted packages from workspace
Expand Down

0 comments on commit 6595455

Please sign in to comment.