summaryrefslogtreecommitdiff
path: root/SL2LS.pl
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-09-14 15:19:39 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-09-14 15:19:39 +0000
commit80bc67799c4f67ec5015da1c4b5aafabae94aa1a (patch)
treec9c291d83e2c4b0cba32a8cf358152a3bd213e3d /SL2LS.pl
parent19dd93da27fa0b699a40f7b0511578cf9adb2280 (diff)
Whitespace cleanup to SL2LS.pl
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@92 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'SL2LS.pl')
-rwxr-xr-xSL2LS.pl10
1 files changed, 5 insertions, 5 deletions
diff --git a/SL2LS.pl b/SL2LS.pl
index 8f48ac62..af2d4608 100755
--- a/SL2LS.pl
+++ b/SL2LS.pl
@@ -5,13 +5,13 @@
# Simple script. Right now, all that needs to be done is that the SL directory
# needs to be deleted and the sql-ledger.conf needs to be renamed.
-$filedie = "To install manually:
-rename the sql-ledger.conf to ledger-smb.conf
-Delete the SL directory (optional but HIGHLY recommended)\n";
+$filedie = "To install manually:\n" .
+ "rename the sql-ledger.conf to ledger-smb.conf\n ".
+ "Delete the SL directory (optional but HIGHLY recommended)\n";
open (SL, "< sql-ledger.conf") || die (
-"Could not open sql-ledger.conf: $! \n $filedie");
+ "Could not open sql-ledger.conf: $! \n $filedie");
open (LS, "> ledger-smb.conf") || die (
-"Could not open ledger-smb.conf: $! \n $filedie");
+ "Could not open ledger-smb.conf: $! \n $filedie");
while ($line = <SL>){
print LS $line;