Skip to content

Commit

Permalink
update shas
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrand committed May 4, 2022
1 parent 868d161 commit c7f91b3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions .hashes
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ e987d563c7d249dfa5372f4f1f433acd1acd3e3c
288a8ae69ce17ca988b77f376494f7dbc7e7c2d7
4fbd5368c19391b99ef96a1a03028bcefe1e8699
690b542350daa133f6650541692e06afa0b8434f
868d161b2c8f2393e5f6ae21a28c2ad767395f8a
4 changes: 2 additions & 2 deletions doc/flutter-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ cat << EOF > deps.edn
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
tensegritics/clojuredart
{:git/url "git@github.com:tensegritics/ClojureDart.git"
:sha "690b542350daa133f6650541692e06afa0b8434f"}}}
:sha "868d161b2c8f2393e5f6ae21a28c2ad767395f8a"}}}
EOF
```

Expand All @@ -43,7 +43,7 @@ cat << EOF > deps.edn
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
tensegritics/clojuredart
{:git/url "https://github.com/tensegritics/ClojureDart.git"
:sha "690b542350daa133f6650541692e06afa0b8434f"}}}
:sha "868d161b2c8f2393e5f6ae21a28c2ad767395f8a"}}}
EOF
```

Expand Down
2 changes: 1 addition & 1 deletion doc/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cat << EOF > deps.edn
tensegritics/clojuredart
{:git/url "git@github.com:tensegritics/ClojureDart.git"
; or "https://github.com/tensegritics/ClojureDart.git"
:sha "690b542350daa133f6650541692e06afa0b8434f"}}}
:sha "868d161b2c8f2393e5f6ae21a28c2ad767395f8a"}}}
EOF
```

Expand Down
9 changes: 9 additions & 0 deletions update-sha
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
#!/bin/bash
git rev-parse HEAD >> .hashes
sed -i -e "s/`tail -2 .hashes | sed -e 'N;s/\n/\//'`/g" README.md doc/*.md
git add .hashes
for i in doc/*.md
do
if ! cmp -s $i $i-e
then
git add $i
fi
done
git commit -m "update shas"

0 comments on commit c7f91b3

Please sign in to comment.