Commit 864929d4 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Replaced non-version-portable '&>>' in auto-build

parent 032ad8d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -294,7 +294,7 @@ main ()
			mkdir -p "$log_dir"
			[ -e "$log_current" ] && rm "$log_current" || true
			ln -s `basename "$log"` "$log_current"
			build "$ref" "$new" </dev/null &>>"$log" &
			build "$ref" "$new" </dev/null >>"$log" 2>&1 &
		fi
	done
}