Skip to content
Snippets Groups Projects
Commit 48feb34d authored by klang's avatar klang
Browse files

Quick fix, wasn't correctly storing TOP

parent df510a26
No related branches found
No related tags found
No related merge requests found
......@@ -32,8 +32,6 @@ sub Parse
{
my ($file, $applications) = @_;
local $top;
if (-r "$file")
{
open(my $fh, "$file") or die "Cannot open $file\n";
......@@ -115,7 +113,9 @@ sub Parse
}
}
my $applications = {TOP => $top};
my $applications;
$applications{"TOP"} = $top;
if ($ENV{GATEWAY} ne "")
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment