From 3ae1e40b9102a86803412104751ed1a32251676e Mon Sep 17 00:00:00 2001 From: Stefan Lang Date: Fri, 16 Sep 2016 13:51:04 +0200 Subject: [PATCH] Fixed a bug with the install.pl script regarding the starman init file. --- SCExV/script/install.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCExV/script/install.pl b/SCExV/script/install.pl index 28bef66..32e95b6 100644 --- a/SCExV/script/install.pl +++ b/SCExV/script/install.pl @@ -219,7 +219,7 @@ sub copy_files { } system ( "sed -e's!plugin_path!/$install_path!' $plugin_path/../htpcra.psgi >$install_path/htpcra.psgi "); my $patcher3 = stefans_libs::install_helper::Patcher->new($plugin_path."/../SCExV.starman.initd" ); -$patcher3->replace_string( "my \\\$app_home = '.*\\n", "my \$app_home = '$install_path'\n" ); +$patcher3->replace_string( "my \\\$app_home = '.*\\n", "my \$app_home = '$install_path';\n" ); $patcher3->{'filename'} = "$install_path/SCExV.starman.initd"; $patcher3-> write_file();