mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
Alloow for reporter without an URL (for privately mailed submissions).
/trunk/scripts/showSamples.sh | 8 6 2 0 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-)
This commit is contained in:
parent
29e57ae0bb
commit
77c6645749
@ -62,8 +62,12 @@ dump_single_sample() {
|
||||
echo -n "| ${CT_ARCH_FLOAT_HW:+hard}${CT_ARCH_FLOAT_SW:+soft} float "
|
||||
echo -n "| "
|
||||
if [ -f "${sample_top}/samples/${sample}/reported.by" ]; then
|
||||
( . "${sample_top}/samples/${sample}/reported.by"; \
|
||||
echo -n "| [[${reporter_url}|${reporter_name}]] "
|
||||
( . "${sample_top}/samples/${sample}/reported.by"
|
||||
if [ -n "${reporter_url}" ]; then
|
||||
echo -n "| [[${reporter_url}|${reporter_name}]] "
|
||||
else
|
||||
echo -n "| ${reporter_name} "
|
||||
fi
|
||||
)
|
||||
else
|
||||
echo -n "| [[http://ymorin.is-a-geek.org/|YEM]] "
|
||||
|
Loading…
Reference in New Issue
Block a user