From 75162bb14b3e38d66617077843f4dfdcaf09d5c4 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 18 Apr 2011 23:15:19 +0000 Subject: import rt 3.8.10 --- rt/sbin/factory | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rt/sbin/factory') diff --git a/rt/sbin/factory b/rt/sbin/factory index ebe93b6e2..a1d1f3e34 100644 --- a/rt/sbin/factory +++ b/rt/sbin/factory @@ -452,11 +452,11 @@ $ClassAccessible print "About to make $RecordClassPath, $CollectionClassPath\n"; `mkdir -p $path`; - open( RECORD, ">$RecordClassPath" ); + open( RECORD, '>', $RecordClassPath ) or die $!; print RECORD $RecordClass; close(RECORD); - open( COL, ">$CollectionClassPath" ); + open( COL, '>', $CollectionClassPath ) or die $!; print COL $CollectionClass; close(COL); -- cgit v1.2.1