fix(git lfs): fixing uv's git lfs issue by setting the env variable UV_GIT_LFS to 1 when installing an app#799
Open
CarolinePascal wants to merge 5 commits into
Open
fix(git lfs): fixing uv's git lfs issue by setting the env variable UV_GIT_LFS to 1 when installing an app#799CarolinePascal wants to merge 5 commits into
CarolinePascal wants to merge 5 commits into
Conversation
6c0fe8e to
2e90b8c
Compare
Contributor
|
Shall we set UV_GIT_LFS=1 in the ISO has well? |
2c905e7 to
65e95db
Compare
|
|
||
| if use_uv: | ||
| cmd = ["uv", "pip", "install", "--python", str(apps_venv_python), pkg] + extra | ||
| cmd = extra_env + ["uv", "pip", "install", "--python", str(apps_venv_python), pkg] + extra |
Contributor
There was a problem hiding this comment.
don't you need a space here?
c8e3fa0 to
7a69f35
Compare
…ing a command with subprocess
…rocesses on the Wireless version * Unique function build_command() to generate the installation commands * Improved installation speed with git refs with a 3 steps approach * Improved robustness by calling installation commands from HOME instead of current dir
7a69f35 to
7f41253
Compare
…V_GIT_LFS to 1 when installing an app.
7f41253 to
ba843a0
Compare
3102cd3 to
e5c14a0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes
uvissues withgit lfswhen callinguv pip installcommands. It simply sets the environment variableUV_GIT_LFSto 1 (c.f. related doc)