Prevent unnecessary config fetches
This commit is contained in:
parent
eac4dba453
commit
6f5d13f07f
1 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ begin
|
|||
functions -e "$dependencyFunction"
|
||||
end
|
||||
|
||||
if isProgramEnabled $args || $force
|
||||
if $force || isProgramEnabled $args
|
||||
set install true
|
||||
else
|
||||
set install false
|
||||
|
@ -180,7 +180,7 @@ begin
|
|||
set -a args --user "$user"
|
||||
end
|
||||
|
||||
if isProgramEnabled $args || $force
|
||||
if $force || isProgramEnabled $args
|
||||
set install true
|
||||
else
|
||||
set install false
|
||||
|
|
Loading…
Reference in a new issue