mike dupont
commited on
Commit
•
8d2c088
1
Parent(s):
6eac24d
adding readme
Browse files- .gitattributes +2 -0
- mina/Readme.md +13 -0
.gitattributes
CHANGED
@@ -67,4 +67,6 @@ _build/default/*/*.ml.sig filter=lfs diff=lfs merge=lfs -text
|
|
67 |
_build/default/*/*/*.ml.sig filter=lfs diff=lfs merge=lfs -text
|
68 |
_build/default/*/*/*/*.ml.sig filter=lfs diff=lfs merge=lfs -text
|
69 |
_build/default/*/*/*/*/*.ml.sig filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
70 |
|
|
|
67 |
_build/default/*/*/*.ml.sig filter=lfs diff=lfs merge=lfs -text
|
68 |
_build/default/*/*/*/*.ml.sig filter=lfs diff=lfs merge=lfs -text
|
69 |
_build/default/*/*/*/*/*.ml.sig filter=lfs diff=lfs merge=lfs -text
|
70 |
+
**.ml.str filter=lfs diff=lfs merge=lfs -text
|
71 |
+
|
72 |
|
mina/Readme.md
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
steps to run json dump of all the mina
|
2 |
+
this includes the compiled code as well. you will find that in the _build directory
|
3 |
+
there are a few copies here, more work is needed.
|
4 |
+
```
|
5 |
+
cd mina/
|
6 |
+
find -name \*.ml -exec ~/2024/08/12/dune/_build/default/.ppx/1977eb4d6c4f6ad3b912f65add506a08/ppx.exe {} > /dev/null \;
|
7 |
+
find -name \*.str > files.txt
|
8 |
+
tar -cf json.tar -T files.txt
|
9 |
+
mkdir ~/2023/12/28/ppxlib/ocaml-opam-ppxlib-json-ast/mina
|
10 |
+
cd ~/2023/12/28/ppxlib/ocaml-opam-ppxlib-json-ast/mina
|
11 |
+
git lfs track **.ml.str
|
12 |
+
git add *
|
13 |
+
```
|