diff options
author | Rebecca Cran <rebecca@bsdio.com> | 2024-06-16 19:04:31 -0600 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-06-18 11:32:59 +0000 |
commit | b0c5781671f322472836ff25ee11242f59aa9945 (patch) | |
tree | 7f8edb2b6a3ed9edd858f4f44b79472359174cd4 | |
parent | 176b9d41f8f71c7572dab615a8d5259dd2cbc02a (diff) | |
download | edk2-b0c5781671f322472836ff25ee11242f59aa9945.tar.gz |
.devcontainer: bump Fedora version to 39
Fedora 35 is EOL. Use Fedora 39 instead: don't use 40 for now since it
comes with gcc 14 which still has some problems building edk2.
Fix the git command to disable the safe directory checks.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
-rw-r--r-- | .devcontainer/devcontainer.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 592bb8cf66..ef51e1695a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ {
- "image": "ghcr.io/tianocore/containers/fedora-35-dev:latest",
- "postCreateCommand": "git config --global --add safe.directory * && pip install --upgrade -r pip-requirements.txt",
+ "image": "ghcr.io/tianocore/containers/fedora-39-dev:latest",
+ "postCreateCommand": "git config --global --add safe.directory '*' && pip install --upgrade -r pip-requirements.txt",
"customizations": {
"vscode": {
"extensions": [
|