Skip to content

Commit

Permalink
Bump version and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DeLaGuardo committed Feb 9, 2024
1 parent 8832931 commit 1b6b2d9
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 39 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/lein_test.yml

This file was deleted.

7 changes: 1 addition & 6 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,6 @@ jobs:
run: |
lein version
- name: lein pwsh
shell: pwsh
run: |
lein version
- name: lein cmd
shell: cmd
run: |
Expand Down Expand Up @@ -312,7 +307,7 @@ jobs:
uses: ./
with:
cli: 1.11.1.1149
lein: 2.9.1
lein: 2.11.0
boot: 2.8.3
bb: 0.8.157
clj-kondo: 2022.06.22
Expand Down
6 changes: 1 addition & 5 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1180,13 +1180,9 @@ function installLeiningen(binScripts, destinationFolder) {
? 'powershell .\\lein.ps1 self-install'
: './lein version';
const toolDir = path.join(destinationFolder, 'leiningen');
const leiningenJarPath = yield leiningenJar(toolDir);
const env = {
LEIN_HOME: toolDir
};
if (leiningenJarPath !== null) {
env['LEIN_JAR'] = leiningenJarPath;
}
if (process.env['PATH']) {
env['PATH'] = process.env['PATH'];
}
Expand Down Expand Up @@ -1331,7 +1327,7 @@ exports.isMacOS = isMacOS;

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


/***/ }),
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions src/leiningen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,11 @@ async function installLeiningen(
: './lein version'

const toolDir = path.join(destinationFolder, 'leiningen')
const leiningenJarPath = await leiningenJar(toolDir)

const env: {[key: string]: string} = {
LEIN_HOME: toolDir
}

if (leiningenJarPath !== null) {
env['LEIN_JAR'] = leiningenJarPath
}

if (process.env['PATH']) {
env['PATH'] = process.env['PATH']
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '12-3'
export const VERSION = '12-4'

0 comments on commit 1b6b2d9

Please sign in to comment.