Skip to content

Commit 1b6b2d9

Browse files
committed
Bump version and cleanup
1 parent 8832931 commit 1b6b2d9

File tree

6 files changed

+4
-39
lines changed

6 files changed

+4
-39
lines changed

.github/workflows/lein_test.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/smoke-tests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,6 @@ jobs:
128128
run: |
129129
lein version
130130
131-
- name: lein pwsh
132-
shell: pwsh
133-
run: |
134-
lein version
135-
136131
- name: lein cmd
137132
shell: cmd
138133
run: |
@@ -312,7 +307,7 @@ jobs:
312307
uses: ./
313308
with:
314309
cli: 1.11.1.1149
315-
lein: 2.9.1
310+
lein: 2.11.0
316311
boot: 2.8.3
317312
bb: 0.8.157
318313
clj-kondo: 2022.06.22

dist/index.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,13 +1180,9 @@ function installLeiningen(binScripts, destinationFolder) {
11801180
? 'powershell .\\lein.ps1 self-install'
11811181
: './lein version';
11821182
const toolDir = path.join(destinationFolder, 'leiningen');
1183-
const leiningenJarPath = yield leiningenJar(toolDir);
11841183
const env = {
11851184
LEIN_HOME: toolDir
11861185
};
1187-
if (leiningenJarPath !== null) {
1188-
env['LEIN_JAR'] = leiningenJarPath;
1189-
}
11901186
if (process.env['PATH']) {
11911187
env['PATH'] = process.env['PATH'];
11921188
}
@@ -1331,7 +1327,7 @@ exports.isMacOS = isMacOS;
13311327

13321328
Object.defineProperty(exports, "__esModule", ({ value: true }));
13331329
exports.VERSION = void 0;
1334-
exports.VERSION = '12-3';
1330+
exports.VERSION = '12-4';
13351331

13361332

13371333
/***/ }),

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/leiningen.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,11 @@ async function installLeiningen(
103103
: './lein version'
104104

105105
const toolDir = path.join(destinationFolder, 'leiningen')
106-
const leiningenJarPath = await leiningenJar(toolDir)
107106

108107
const env: {[key: string]: string} = {
109108
LEIN_HOME: toolDir
110109
}
111110

112-
if (leiningenJarPath !== null) {
113-
env['LEIN_JAR'] = leiningenJarPath
114-
}
115-
116111
if (process.env['PATH']) {
117112
env['PATH'] = process.env['PATH']
118113
}

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '12-3'
1+
export const VERSION = '12-4'

0 commit comments

Comments
 (0)