Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Clone using the web URL #587

Merged
merged 1 commit into from
Feb 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}

await runner(
'git clone --depth=1 --no-tags git@github.com:node-red/node-red.git',
'git clone --depth=1 --no-tags --branch dev https://github.com/node-red/node-red.git',
rootDir,
'Cloning Node-RED repository'
)
Expand All @@ -34,7 +34,7 @@
if (!fs.existsSync(projectsDir)) {
await makeDir(projectsDir, 'Creating Projects directory')
await runner(
'git clone git@github.com:node-red-contrib-themes/theme-dev-project.git',
'git clone https://github.com/node-red-contrib-themes/theme-dev-project.git',
projectsDir,
'Cloning theme development project repository'
)
Expand Down
Loading