Ignore installation status by default
This commit is contained in:
parent
38ed0780f8
commit
0c6c9050c9
1 changed files with 1 additions and 2 deletions
|
@ -3,7 +3,6 @@ begin
|
|||
set -a installed
|
||||
|
||||
function getSWName
|
||||
echo "PortValhalla"
|
||||
end
|
||||
|
||||
function installSW
|
||||
|
@ -17,7 +16,7 @@ begin
|
|||
set -a installed (getSWName)
|
||||
installSW $argv[2..]
|
||||
else if [ "$action" = "configure" ]
|
||||
if contains (getSWName) $installed
|
||||
if [ -z (getSWName) ] || contains (getSWName) $installed
|
||||
configureSW $argv[2..]
|
||||
else
|
||||
printf %s%s\n \
|
||||
|
|
Loading…
Reference in a new issue