Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3297,6 +3297,7 @@ def env_vars(self):

action_funcs = ramble.util.env.action_funcs

license_set = set()
for scope in config_scopes:
license_conf = ramble.config.config.get_config(
"licenses", scope=scope
Expand All @@ -3307,10 +3308,12 @@ def env_vars(self):
if app_licenses:
# Append logic to source file which contains the exports
shell = ramble.config.get("config:shell")
command.append(
license_set.add(
f"{source_str(shell)} {{license_input_dir}}/{constants.LICENSE_INC_NAME}"
)

command.extend(license_set)

# Process environment variable actions
for env_var_set in self.environment_variable_sets:
for action, conf in env_var_set.items():
Expand Down