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
|
set -a installed
|
||||||
|
|
||||||
function getSWName
|
function getSWName
|
||||||
echo "PortValhalla"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function installSW
|
function installSW
|
||||||
|
@ -17,7 +16,7 @@ begin
|
||||||
set -a installed (getSWName)
|
set -a installed (getSWName)
|
||||||
installSW $argv[2..]
|
installSW $argv[2..]
|
||||||
else if [ "$action" = "configure" ]
|
else if [ "$action" = "configure" ]
|
||||||
if contains (getSWName) $installed
|
if [ -z (getSWName) ] || contains (getSWName) $installed
|
||||||
configureSW $argv[2..]
|
configureSW $argv[2..]
|
||||||
else
|
else
|
||||||
printf %s%s\n \
|
printf %s%s\n \
|
||||||
|
|
Loading…
Reference in a new issue