Skip to content

Commit

Permalink
chore: remove fallback
Browse files Browse the repository at this point in the history
Co-authored-by: Théo LUDWIG <[email protected]>
  • Loading branch information
mstruebing and theoludwig committed Oct 17, 2024
1 parent ea23a31 commit da5944d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { addPath, info, setFailed } from '@actions/core'
import { downloadTool, extractTar } from '@actions/tool-cache'
import fs from 'node:fs/promises'
import os from "node:os"
import path from 'node:path'
import { findRelease } from './release'
import { checkerName, version } from './shared'

const WORKING_DIR = path.join(process.env.HOME ?? "/tmp", 'editorconfig-checker')
const WORKING_DIR = path.join(os.homedir(), 'editorconfig-checker')

async function main() {
info(`Find '${version}' release`)
Expand Down

0 comments on commit da5944d

Please sign in to comment.