Skip to content

Commit de8b72e

Browse files
committed
Address review comments
1 parent ca725a1 commit de8b72e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build-src.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# commit-db.rb list-valid nightly|GIT_DIR=/your/rust/dir/.git ./build-src.sh
55

66
if [ $(uname) == 'Darwin' ]; then
7-
alias tac='tail -f'
7+
alias tac='tail -r'
88
fi
99

1010
prompt_changes() {

functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ get_io_commits() {
3535
}
3636

3737
get_patch_commits() {
38-
find $PATCH_DIR -type f|xargs -n 1 basename|cut -d. -f1
38+
find $PATCH_DIR -type f -print0|xargs -0 -n 1 basename|cut -d. -f1
3939
}
4040

4141
prepare_version() {

0 commit comments

Comments
 (0)