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