Address review comments
This commit is contained in:
parent
ca725a1cb5
commit
de8b72efde
|
@ -4,7 +4,7 @@
|
||||||
# commit-db.rb list-valid nightly|GIT_DIR=/your/rust/dir/.git ./build-src.sh
|
# commit-db.rb list-valid nightly|GIT_DIR=/your/rust/dir/.git ./build-src.sh
|
||||||
|
|
||||||
if [ $(uname) == 'Darwin' ]; then
|
if [ $(uname) == 'Darwin' ]; then
|
||||||
alias tac='tail -f'
|
alias tac='tail -r'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
prompt_changes() {
|
prompt_changes() {
|
||||||
|
|
|
@ -35,7 +35,7 @@ get_io_commits() {
|
||||||
}
|
}
|
||||||
|
|
||||||
get_patch_commits() {
|
get_patch_commits() {
|
||||||
find $PATCH_DIR -type f|xargs -n 1 basename|cut -d. -f1
|
find $PATCH_DIR -type f -print0|xargs -0 -n 1 basename|cut -d. -f1
|
||||||
}
|
}
|
||||||
|
|
||||||
prepare_version() {
|
prepare_version() {
|
||||||
|
|
Loading…
Reference in New Issue