make non-embedded runtimes work properly
This commit is contained in:
@ -25,7 +25,8 @@ module Faaso
|
||||
template_base,
|
||||
template_files,
|
||||
folder,
|
||||
{"name" => Path[folder].basename}
|
||||
{"name" => Path[folder].basename,
|
||||
"runtime" => runtime}
|
||||
)
|
||||
0
|
||||
end
|
||||
|
@ -85,3 +85,8 @@ when .fetch("status", false)
|
||||
end
|
||||
|
||||
exit(status)
|
||||
|
||||
# Embed runtimes in the faaso binary using rucksack
|
||||
{% for name in `find ./runtimes -type f`.split('\n') %}
|
||||
rucksack({{name}})
|
||||
{% end %}
|
||||
|
@ -91,8 +91,3 @@ module Runtime
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# Embed runtimes in the binary using rucksack
|
||||
{% for name in `find ./runtimes -type f`.split('\n') %}
|
||||
rucksack({{name}})
|
||||
{% end %}
|
||||
|
Reference in New Issue
Block a user