diff options
author | Richard PALO <richard@NetBSD.org> | 2015-03-20 08:20:58 +0100 |
---|---|---|
committer | Dan McDonald <danmcd@omniti.com> | 2015-03-21 15:35:01 -0400 |
commit | e2c8add4a6cefe2fe3a4b140f54561823d493bcc (patch) | |
tree | cb69fdee85fc3bcfbf020642946363de6e3f8032 /usr/src | |
parent | b52c8fbe58cfd9f349fdfa6cc5cb6f5731946a2b (diff) | |
download | illumos-joyent-e2c8add4a6cefe2fe3a4b140f54561823d493bcc.tar.gz |
5732 nightly.sh should use check-paths.out to be useful for .gitignore
Reviewed by: Josef 'Jeff' Sipek<jeffpc@josefsipek.net>
Reviewed by: Toomas Soome<tsoome@me.com>
Approved by: Dan McDonald <danmcd@omniti.com>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/tools/scripts/nightly.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/tools/scripts/nightly.sh b/usr/src/tools/scripts/nightly.sh index 77d23a76aa..610cfc34b6 100644 --- a/usr/src/tools/scripts/nightly.sh +++ b/usr/src/tools/scripts/nightly.sh @@ -2156,9 +2156,9 @@ if [ "$CHECK_PATHS" = y -a "$N_FLAG" != y ]; then >>$mail_msg_file arg=-b [ "$build_ok" = y ] && arg= - checkpaths $arg $checkroot > $SRC/checkpaths.out 2>&1 - if [[ -s $SRC/checkpaths.out ]]; then - tee -a $LOGFILE < $SRC/checkpaths.out >> $mail_msg_file + checkpaths $arg $checkroot > $SRC/check-paths.out 2>&1 + if [[ -s $SRC/check-paths.out ]]; then + tee -a $LOGFILE < $SRC/check-paths.out >> $mail_msg_file build_extras_ok=n fi fi |