Skip to content

Commit 8c6c86b

Browse files
committedNov 30, 2008
Don't bother with ReleaseNotes.txt if not present
git-svn-id: https://svn.resiprocate.org/rep/resiprocate/main@8346 ddefafc4-47db-0310-ae44-fa13212b10f2
1 parent 7cde6c1 commit 8c6c86b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎buginfo.pl

+5-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@
3737
}
3838

3939
&exec ("svnversion");
40-
&exec ("head ReleaseNotes.txt");
40+
41+
if (-e 'ReleaseNotes.txt')
42+
{
43+
&exec ("head ReleaseNotes.txt");
44+
}
4145

4246
if ($uname =~ /Darwin/i)
4347
{

0 commit comments

Comments
 (0)
Please sign in to comment.