Skip to content

chore: set update=none for example book submodules #158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,27 +1,36 @@
[submodule "books/mdBook"]
path = books/mdBook
url = ../../rust-lang/mdBook.git
update = none
[submodule "books/cargo"]
path = books/cargo
url = ../../rust-lang/cargo.git
update = none
[submodule "books/rust-book"]
path = books/rust-book
url = ../../rust-lang/book.git
update = none
[submodule "books/nomicon"]
path = books/nomicon
url = ../../rust-lang/nomicon.git
update = none
[submodule "books/rust-reference"]
path = books/rust-reference
url = ../../rust-lang/reference.git
update = none
[submodule "books/rust-by-example"]
path = books/rust-by-example
url = ../../rust-lang/rust-by-example.git
update = none
[submodule "books/rustc-dev-guide"]
path = books/rustc-dev-guide
url = ../../rust-lang/rustc-dev-guide.git
update = none
[submodule "books/rust-edition-guide"]
path = books/rust-edition-guide
url = ../../rust-lang/edition-guide.git
update = none
[submodule "books/rust-embedded"]
path = books/rust-embedded
url = ../../rust-embedded/book.git
update = none
3 changes: 3 additions & 0 deletions scripts/install-ci-deps
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

set -e

# Checkout submodules
git submodule update --checkout --recursive

# Update apt package lists
sudo apt-get update

Expand Down
Loading