forked from clojure/clojurescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
a few things noticed when browsing in VSCode
- Loading branch information
1 parent
7cb8d6a
commit f3d2067
Showing
2 changed files
with
22 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |