You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ISSUE: When running ./trade.sh generate -c tradechannel command for testing, I found sed command has issue on osx.
SOLVE: change [sed -i] with [sed -i ""].
REASON: Unlike Ubuntu, OS X requires the extension to be explicitly specified. The workaround is to set an empty string:
$ sed -i '' 's/megatron/pony/g' /path/to/file.txt
(ref: lmquang/til#18)
The text was updated successfully, but these errors were encountered:
ISSUE: When running ./trade.sh generate -c tradechannel command for testing, I found sed command has issue on osx.
SOLVE: change [sed -i] with [sed -i ""].
REASON: Unlike Ubuntu, OS X requires the extension to be explicitly specified. The workaround is to set an empty string:
$ sed -i '' 's/megatron/pony/g' /path/to/file.txt
(ref: lmquang/til#18)
The text was updated successfully, but these errors were encountered: