-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move nvm install and remove npm install
- Loading branch information
1 parent
ec0e210
commit d81bf3c
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -224,21 +224,20 @@ Then: | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.0/install.sh | bash | ||
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" | ||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | ||
nvm install 15 | ||
nvm use 15 | ||
ssh-keygen -t ed25519 -C "[email protected]" | ||
git config --global user.name "Solid OS Build (Michiel)" | ||
git config --global user.email "[email protected]" | ||
cat .ssh/id_ed25519.pub | ||
nvm install 15 | ||
nvm use 15 | ||
npm login | ||
``` | ||
|
||
Log in to npm with your npm account and add the SSH public key to your GitHub account. Then continue: | ||
```sh | ||
git clone https://github.com/solid/solidos | ||
cd solidos | ||
npm install | ||
npm run prepare | ||
npm run release | ||
``` |