Skip to content

Commit

Permalink
[#1457] apply suggestion: include -> append
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-pavel committed Sep 26, 2024
1 parent 10d1404 commit e69c51a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rakelib/40_dist.rake
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ end

agent_etc_files = FileList["etc/agent.env", "etc/agent-credentials.json.template"]
if get_pkg_type() == "apk"
agent_etc_files.include("etc/isc-stork-agent.initd")
agent_etc_files.append("etc/isc-stork-agent.initd")
end
agent_dist_etc_dir = "dist/agent/etc/stork"
file agent_dist_etc_dir => agent_etc_files do
Expand Down Expand Up @@ -194,7 +194,7 @@ end

server_etc_files = FileList["etc/server.env"]
if get_pkg_type() == "apk"
server_etc_files.include("etc/isc-stork-server.initd")
server_etc_files.append("etc/isc-stork-server.initd")
end
server_dist_etc_dir = "dist/server/etc/stork"
file server_dist_etc_dir => server_etc_files do
Expand Down

0 comments on commit e69c51a

Please sign in to comment.