Made passing arguments to default command possible
This commit is contained in:
parent
4f06564999
commit
27dd9dfae2
7
wino
7
wino
|
@ -113,9 +113,12 @@ else
|
|||
{
|
||||
$command=`cat $container_path/default`;
|
||||
chomp $command;
|
||||
exec "WINEPREFIX=$container_path $winecmd $command @ARGV";
|
||||
}
|
||||
else { die "No command given, and no default command found"; }
|
||||
}
|
||||
|
||||
exec "WINEPREFIX=$container_path $winecmd \"$command\" @ARGV";
|
||||
else
|
||||
{
|
||||
exec "WINEPREFIX=$container_path $winecmd \"$command\" @ARGV";
|
||||
}
|
||||
}
|
||||
|
|
Reference in New Issue
Block a user