You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git fetch --depth=1 origin $COMMIT# fetch only the required version
git checkout $COMMIT# checkout on the right commit
I used:
git fetch origin
git checkout main
npm install
and I also updated the references for the variables at the beginning of the script accordingly
# github submodule repo address without https:// prefix
SUBMODULE_GITHUB=path to your own, don't forget the .git bit at the end# .gitmodules submodule pathSUBMODULE_PATH=this can be copied from the gitmodules file
The text was updated successfully, but these errors were encountered:
For me when following the approach as outlined in the Readme it didn't work and I had to update a few things in the setup script.
Specifically, things outlined in this comment:
https://github.com/orgs/vercel/discussions/44#discussioncomment-3391318
I.e.
Instead of:
I used:
and I also updated the references for the variables at the beginning of the script accordingly
The text was updated successfully, but these errors were encountered: