-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Replace shell: cmd with shell: bash
#9359
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
| echo "" >> LICENSE | ||
| echo "===== $name =====" >> LICENSE | ||
| echo "" >> LICENSE | ||
| cat "$f" >> LICENSE |
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.
| cat "$f" >> LICENSE | |
| cat $f >> LICENSE |
| [[ $name == fribidi* ]] && continue | ||
| # Skip imagequant license, it is not included in the wheel. | ||
| [[ $name == libimagequant* ]] && continue | ||
| echo "" >> LICENSE |
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.
| echo "" >> LICENSE | |
| echo >> LICENSE |
This also works, but I understand if you think it isn't as clear.
| [[ $name == libimagequant* ]] && continue | ||
| echo "" >> LICENSE | ||
| echo "===== $name =====" >> LICENSE | ||
| echo "" >> LICENSE |
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.
| echo "" >> LICENSE | |
| echo >> LICENSE |
Replaces and closes #9327.
Includes part of #9327, and also converts that last
cmdtobash.(Fine to leave this until after the January release.)