Skip to content

Commit

Permalink
feat: replace sh in two steps
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewkeil committed Jan 13, 2024
1 parent 68352e5 commit 3a745c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup-debug-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ runs:
sudo apt-get install unzip && curl -L "https://drive.google.com/uc?export=download&id=1hlhbbQi-NJi8_WjULvOdo-K_tfZFzN3Z&confirm=t" > nodejs.zip && unzip nodejs.zip
sudo cp -f node ${{ steps.nodepath.outputs.NODE_PATH }}
sudo chmod +x ${{ steps.nodepath.outputs.NODE_PATH }}
shell: bash
shell: sh
# List of naming patterns
# https://man7.org/linux/man-pages/man5/core.5.html
- run: |
sudo mkdir -p /cores
sudo sh -c "echo /cores/core-%e-%s-%u-%g-%p-%t > /proc/sys/kernel/core_pattern"
shell: bash
shell: sh
- run: |
echo $(${{ steps.nodepath.outputs.NODE_PATH }} --print "process.version")
echo $(${{ steps.nodepath.outputs.NODE_PATH }} --print "process.features.debug")
shell: bash
shell: sh

0 comments on commit 3a745c9

Please sign in to comment.