Skip to content

Commit

Permalink
Use -M with clojure.main
Browse files Browse the repository at this point in the history
Fixes #1044

# Conflicts:
#	CHANGELOG.md
  • Loading branch information
mfikes committed Dec 26, 2020
1 parent 63f4798 commit 92e1e9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. This change
### Changed
- Update to ClojureScript 1.10.758 ([#1034](https://github.com/planck-repl/planck/issues/1034))
- Qualify lib names ([#1043](https://github.com/planck-repl/planck/issues/1043))
- Use `-M` with `clojure.main` ([#1044](https://github.com/planck-repl/planck/issues/1044))

### Fixed
- Drone CI builds broken ([#1038](https://github.com/planck-repl/planck/issues/1038))
Expand Down
4 changes: 2 additions & 2 deletions planck-cljs/script/build
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ if [ -n "${CANARY_CLOJURESCRIPT_VERSION+set}" ]; then
fi

if [ -n "${RESOLVE_ALIAS+set}" ]; then
clojure -R"${RESOLVE_ALIAS}" -Sdeps "${DEPS:-{}}" script/build.clj
clojure -R"${RESOLVE_ALIAS}" -Sdeps "${DEPS:-{}}" -M script/build.clj
else
if [ "${VERBOSE_BUILD:-0}" == "1" ]; then
clojure -Sdeps "${DEPS:-{}}" -Spath
fi
clojure -Sdeps "${DEPS:-{}}" script/build.clj
clojure -Sdeps "${DEPS:-{}}" -M script/build.clj
fi

0 comments on commit 92e1e9c

Please sign in to comment.