Skip to content

Commit

Permalink
Fixed a bug with the install.pl script regarding the starman init file.
Browse files Browse the repository at this point in the history
  • Loading branch information
stela2502 committed Sep 16, 2016
1 parent f91900f commit 3ae1e40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SCExV/script/install.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 3ae1e40

Please sign in to comment.