JohnnyBackflip

Results 6 comments of JohnnyBackflip

> git pull --recurse-submodules > > or > > git submodule update --init --recursive >Fetching submodule crates/utils/translations >Already up to date. Didn't work, same error edit: https://join-lemmy.org/docs/en/contributing/docker_development.html works tho

GIt status: >git status >On branch main >Your branch is up to date with 'origin/main'. >nothing to commit, working tree clean crates/utils/translations/translations/en.json exists.

> Its clearly missing otherwise you wouldn't be getting a nosuchfilefound excepotion. Show us the output of > > `head crates/utils/translations/translations/en.json` head crates/utils/translations/translations/en.json { "post": "post", "remove_post": "Remove Post", "no_posts":...

> IE `cargo clean` didn't work, same error after doing **cargo run** again > Other files mentioned in the error message also exist? No, that's the only error > Maybe...

> Try these commands: > > ``` > git submodule init > git submodule update --recursive --remote > cargo run > ``` Thanks but this doesn't solve the problem.

The reason is a wrong Rust version. Some repo is out of date. Here is how to solve it: Rust must be v 1.60.0 >rustc --version rustc 1.60.0 Do this:...