-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TOOLS-2577 Update eng.git for 23.4.0 #68
base: master
Are you sure you want to change the base?
Conversation
I've been using these changes while working on updating mahi to build on 23.4.0. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LOVE all of the documentation and URL updates.
Please address not only the one inline comment, but also make sure you update the ticket with what you're doing here (incl. the documentation updates).
@@ -81,7 +82,7 @@ function mkdir(d) { | |||
|
|||
function gitify(dir, repo) { | |||
exec('git init', dir, function () { | |||
exec('git remote add origin git@github.com:joyent/' + repo + '.git', | |||
exec('git remote add origin https://github.com/TritonDataCenter/' + repo + '.git', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should probably leave this as ssh here (and probably elsewhere in this PR?). I don't have my gh token set up for doing operations over HTTP, but my ssh key is always available.
@@ -38,7 +39,7 @@ else | |||
$(NODE_EXEC) $(NPM_EXEC) $(NODE_WAF_EXEC): | |||
(mkdir -p $(BUILD) \ | |||
&& cd $(BUILD) \ | |||
&& [[ -d src-node ]] && (cd src-node && git checkout master && git pull) || git clone https://github.com/joyent/node.git src-node \ | |||
&& [[ -d src-node ]] && (cd src-node && git checkout master && git pull) || git clone https://github.com/nodejs/node.git src-node \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm pretty sure that the branch here will need to be main. I had to fix that in the sdcnode repo. This also makes me wonder if this bit of code even ever gets used anymore...
No description provided.