Skip to content

Commit

Permalink
Adding support to expand the wildcard
Browse files Browse the repository at this point in the history
Signed-off-by: Sachin Pisal <[email protected]>
  • Loading branch information
sacpis committed Dec 23, 2024
1 parent be2cb06 commit 1264b76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/build/cudaq.dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ARG QUTIP_WHEEL

# Install qutip from the wheel if provided
RUN if [ -n "$QUTIP_WHEEL" ]; then \
pip install "$QUTIP_WHEEL"; \
pip install $(ls $QUTIP_WHEEL); \
else \
pip install qutip; \
fi
Expand Down
2 changes: 1 addition & 1 deletion docker/release/cudaq.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ARG QUTIP_WHEEL

# Install qutip from the wheel if provided
RUN if [ -n "$QUTIP_WHEEL" ]; then \
pip install "$QUTIP_WHEEL"; \
pip install $(ls $QUTIP_WHEEL); \
else \
pip install qutip; \
fi
Expand Down

0 comments on commit 1264b76

Please sign in to comment.