Skip to content

Commit

Permalink
fix install_always for package #5008
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Apr 24, 2024
1 parent cde37d4 commit 43351ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ function main(package)
else

-- build and install package to the install directory
local force_reinstall = package:data("force_reinstall") or option.get("force")
local force_reinstall = package:policy("package.install_always") or package:data("force_reinstall") or option.get("force")
if force_reinstall or not package:manifest_load() then

-- clear install directory
Expand Down

0 comments on commit 43351ab

Please sign in to comment.