Skip to content

Commit

Permalink
Merge pull request #1417 from BetterThanTomorrow/remove_warning_durin…
Browse files Browse the repository at this point in the history
…g_deps_edn_jack-in

Prevent warning during deps.edn jack-in
  • Loading branch information
PEZ committed Dec 22, 2021
2 parents 7995cf9 + 75183f5 commit 29c6da4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Changes to Calva.

## [Unreleased]
- [Prevent warning during deps.edn jack-in](https://github.com/BetterThanTomorrow/calva/issues/1355)
- Fix: [Connecting to an out-of-process nREPL server and a merged Figwheel-main build](https://github.com/BetterThanTomorrow/calva/issues/1386)

## [2.0.231] - 2021-12-14
Expand Down
2 changes: 1 addition & 1 deletion src/nrepl/project-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ async function cljCommandLine(connectSequence: ReplConnectSequence, cljsType: Cl
...serverPrinterDependencies
};
const useMiddleware = [...middleware, ...(cljsType ? cljsMiddleware[cljsType] : [])];
const aliasesOption = aliases.length > 0 ? `-A${aliases.join("")}` : '';
const aliasesOption = aliases.length > 0 ? `-M${aliases.join("")}` : '-M';
const q = isWin ? '"' : "'";
const dQ = isWin ? '""' : '"';
for (let dep in dependencies)
Expand Down

0 comments on commit 29c6da4

Please sign in to comment.