mirror of
https://github.com/pnpm/action-setup.git
synced 2024-11-10 09:39:11 +08:00
Use execPath
This commit is contained in:
parent
ed88a96c4e
commit
e1bd3c6b13
BIN
dist/index.js
vendored
BIN
dist/index.js
vendored
Binary file not shown.
@ -1,12 +1,8 @@
|
||||
import { inspect } from 'util'
|
||||
import { setFailed, warning } from '@actions/core'
|
||||
import { setFailed } from '@actions/core'
|
||||
import getInputs from './inputs'
|
||||
import setOutputs from './outputs'
|
||||
import install from './install'
|
||||
|
||||
warning(`EXEC_PATH ${process.execPath}`)
|
||||
warning(`EXEC_ARGV ${inspect(process.execArgv)}`)
|
||||
|
||||
const inputs = getInputs()
|
||||
|
||||
install(inputs).then(() => {
|
||||
|
@ -1,9 +1,10 @@
|
||||
import { spawn } from 'child_process'
|
||||
import { execPath } from 'process'
|
||||
import { downloadSelfInstaller } from '../self-installer'
|
||||
import { Inputs } from '../inputs'
|
||||
|
||||
export function runSelfInstaller(inputs: Inputs): Promise<number> {
|
||||
const cp = spawn('node', {
|
||||
const cp = spawn(execPath, {
|
||||
env: {
|
||||
PNPM_VERSION: inputs.version,
|
||||
PNPM_DEST: inputs.dest,
|
||||
|
Loading…
Reference in New Issue
Block a user