We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08e2556 commit f2d1128Copy full SHA for f2d1128
scripts/hard-reset.sh
@@ -1,12 +1,14 @@
1
#!/bin/bash
2
3
-# Hard resets submodules.
+# Hard resets micropython submodules. Should not touch changes to this repository itself.
4
# Assumes submodules are initialised.
5
# scripts/firstTime.sh will need to be rerun after this.
6
7
-# Use: sudo scripts/hard_reset.sh
+# Use: sudo scripts/hard-reset.sh
8
9
cd micropython
10
git submodule foreach git clean -fdx
11
git clean -fdx
12
-git reset --hard --recurse-submodules
+git reset --hard --recurse-submodules
13
+
14
+echo "NOTE: Remember to run scripts/firstTime.sh before trying to compile!"
0 commit comments