From 35fcf9abdd85b11e19efa62e65f834a1f0cb410a Mon Sep 17 00:00:00 2001 From: player-03 Date: Mon, 27 Feb 2023 17:20:27 -0500 Subject: [PATCH] Update troubleshooting instructions, again. This is a standard use case and should be solvable with Git's tools. Also, `deinit` shouldn't be needed. --- project/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/project/README.md b/project/README.md index 137bc090d..b46585a17 100644 --- a/project/README.md +++ b/project/README.md @@ -38,8 +38,9 @@ See `lime help rebuild` for details and additional options. If errors appeared after updating Lime, the update process may not be complete. Run these commands: ```bash -git submodule deinit --all -git submodule update --init +git submodule init +git submodule sync +git submodule update lime rebuild tools ```