Skip to content

Commit

Permalink
a few things noticed when browsing in VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
cooljeanius committed Nov 19, 2024
1 parent 7cb8d6a commit f3d2067
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"java.compile.nullAnalysis.mode": "automatic"
}
"java.compile.nullAnalysis.mode": "automatic",
"sarif-viewer.connectToGithubCodeScanning": "off"
}
28 changes: 19 additions & 9 deletions ast-ref/buildref.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
#!/bin/sh

java -cp .:`lein cp` clojure.main <<EOF
java -cp .:"$(lein cp)" clojure.main <<EOF
(load "gen-ref")
(System/exit 0)
EOF

#git pull
#mv quickref.html q.html
#git checkout origin/gh-pages
#mv q.html quickref.html
#git add quickref.html
#git commit -m "update quickref"
#git push origin HEAD:gh-pages
#git checkout master
if test -n "${DO_COMMENTED_OUT_JUNK}" && test "${DO_COMMENTED_OUT_JUNK}" = "YES"; then
if test -x "$(which git)" && test -d .git && test -r .git; then
git pull
if test -r quickref.html && test ! -e q.html && test -w .; then
mv quickref.html q.html
fi
git checkout origin/gh-pages
if test -r q.html && test ! -e q.html && test -w .; then
mv q.html quickref.html
fi
if test -r quickref.html; then
git add quickref.html
git commit -m "update quickref"
fi
git push origin HEAD:gh-pages
git checkout master
fi
fi

0 comments on commit f3d2067

Please sign in to comment.