-
Notifications
You must be signed in to change notification settings - Fork 31
fixed prevVersion detection on windows #90
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
Conversation
Thank you for your pull request. It looks like this may be your first contribution to a jQuery Foundation project, if so we need you to sign our Contributor License Agreement (CLA). 📝 Please visit http://contribute.jquery.org/CLA/ to sign. After you signed, the PR is checked again automatically after a minute. If there's still an issue, please reply here to let us know. If you've already signed our CLA, it's possible your git author information doesn't match your CLA signature (both your name and email have to match), for more information, check the status of your CLA check. |
after applying this fix, I also found that contributors.txt is sprinkeled with single quotes. I guess we needs this kind of fix in several spots:
|
adjusted the PR with some more fixes. As is I can build jquery-validate on my windows machine |
@@ -237,14 +237,14 @@ Release.define({ | |||
Release.chdir( Release.dir.repo ); | |||
console.log( "Committing release artifacts..." ); | |||
Release.exec( "git add -f " + paths.join( " " ), "Error adding release artifacts to git." ); | |||
Release.exec( "git commit -m '" + Release.newVersion + "'", | |||
Release.exec( "git commit -m \"Release:" + Release.newVersion + "\"", |
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.
no need to prefix the commit with Release:
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 will check that again. I guess I used somehow a old version of commitplease (maybe because of outdated nodejs or npm)
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.
verified in #88, this is no longer required as the version is (using this PR) properly dected (without the single quotes)
just tried to verify the CLA, but the link posted by the BOT above leads to a 404 page. |
Re CLA: You've signed with [email protected], but your git email is [email protected]. You could sign again with the other email or update your commit. |
here we go, @jzaefferer thx for the heads up |
Changes look fine to me. Would be useful to update the commit message to explain why this is necessary (link to Stackoverflow?). |
agree. adjusted per feedback. |
Thanks! |
No description provided.