-
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
fix makemysql so that easywp might work #154
Merged
+104
−39
Merged
Changes from 17 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
3190152
rewrote so that it might work
axmmisaka 6596e3a
idk wat autopep8 changed/suggested i followed its advice
axmmisaka f2b495c
forgot to add the messages
axmmisaka 06d1355
Added argument parsing and non-human-friendly output
axmmisaka 7cdbb58
Squashed two commits
axmmisaka e43bdb5
updated all three scripts so that they support some silent arguments …
axmmisaka ea004ec
fix stupid bugs made in 3cac9d4d
axmmisaka 9cf60d7
fix pre-commit problem made in 3cac9d4d
axmmisaka ef8816f
Wrapper for if silent
axmmisaka 5e9b52d
Fixed a stupid logical mistake and added some stuff in bash scripts; …
axmmisaka 2798e6b
Applied @kpengboy's suggestions
axmmisaka 6aa0b56
Bug: if quite is specified, do not ask if user wants to proceed.
axmmisaka 7431eef
Indentation Errors
axmmisaka 0c19f5a
Fix, silent should be global variable
axmmisaka 6b7b2c3
Fixed some bugs in easywp
axmmisaka 7fe6f5c
fix comment
axmmisaka 051e038
fix so precommit pass
axmmisaka bb20eb4
more to squash
axmmisaka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
should these be
if [[ $? -ne 0 ]]
? Since we are checking if the return code was abnormal (0 is success)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 see you inverted this in
051e0387350c67f0fd6cf976da25ad8511ad46bb
to make precommit pass. What was the issue?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 don't know why but pre-commit say I should use
if [ $? ]
instead ofif [[ $? -ne 0 ]]
so I accepted this recommendation