본문 바로가기
개발

[fork, nvm] fork와 환경변수충돌(?) 기록용

by goodchuck 2024. 12. 2.

목차

     

     

     개요

    개발을하면서 커밋을하고 fork앱에서 push를 할 때 생긴 일이 있는데 husky의 pre-push 를 할때  아래와 같이 파일을 세팅하였는데

    pnpm이 없다라고하는 일이 일어났었다.

    pnpm lint
    pnpm tsc

     

     husky 이슈를 찾아보기

    https://github.com/fork-dev/Tracker/issues/311

     

    Pre-commit hook can't find node · Issue #311 · fork-dev/Tracker

    Hey there, I'm using husky to run a pre-commit hook on my repo, and everything runs correctly in my terminal when I run git commit -m "some message" The issue is when I try and commit with Fork, an...

    github.com

    해당 이슈에서 내가 겪은 상황과 비슷한 상황이 있는 것을 발견

    https://github.com/fork-dev/Tracker/issues/311#issuecomment-763609042

     

    Pre-commit hook can't find node · Issue #311 · fork-dev/Tracker

    Hey there, I'm using husky to run a pre-commit hook on my repo, and everything runs correctly in my terminal when I run git commit -m "some message" The issue is when I try and commit with Fork, an...

    github.com

    위 링크의 답변을 통해 해결하였다

     

    open -a Fork

     

    위 명령어를 내가 사용하고있는 터미널에서 실행시켰더니 문제가 해결이 되었다.