Skip to content

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jgustie committed Oct 3, 2022
1 parent b865b92 commit 04cbdf0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,6 @@ jobs:

- name: No boom
if: ${{ matrix.version != 'latest' }}
run: konjure version | grep ${{ matrix.version }}
run: |
echo "Got PATH: $PATH"
konjure version | grep ${{ matrix.version }}
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function getDownloadObject(version) {
const platform = os.platform();
const filename = `konjure-${ mapOS(platform) }-${ mapArch(os.arch()) }`;
const extension = platform === 'win32' ? 'zip' : 'tar.gz';
const binPath = platform === 'win32' ? 'bin' : filename;
const binPath = platform === 'win32' ? 'bin' : '';
const url = `https://github.com/thestormforge/konjure/releases/download/v${ version }/${ filename }.${ extension }`;
return {
url,
Expand Down

0 comments on commit 04cbdf0

Please sign in to comment.