diff --git a/README.md b/README.md new file mode 100644 index 0000000..dd2d059 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# setup-clojure + +This action sets up clojure tools environment for using in GitHub Actions. + +* clojure cli +* leiningen (not yet available) +* boot-clj (not yet available) + +# Usage + +```yaml +steps: +- uses: actions/checkout@latest +- uses: action/setup-java@v1 + with: + java-version: '9.0.4' // The JDK version to make available on the path. Required to run any clojure command line tools. +- uses: DeLaGuardo/setup-clojure@1.0 + with: + tools-deps: '1.10.1.469' +- run: clojure -Sdescribe +``` + +# License + +The scripts and documentation in this project are released under the [MIT License](LICENSE) diff --git a/src/tdeps.ts b/src/tdeps.ts index de78000..6a9dca4 100644 --- a/src/tdeps.ts +++ b/src/tdeps.ts @@ -122,7 +122,6 @@ async function readWriteAsync( fs.writeFile(file, newValue, 'utf-8', function(err) { if (err) throw err; - console.log('filelistAsync complete'); }); }); }