Skip to content

Commit

Permalink
fix(binary options): fix an issue introduced by #141
Browse files Browse the repository at this point in the history
  • Loading branch information
darkanakin41 committed Jan 15, 2021
1 parent ec5ebc9 commit f404353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddb/feature/jsonnet/lib/ddb.docker.libjsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ local Volumes(services) = {

local NoBinaryOptionsLabels(name, options, options_condition = null, index = null) = {};
local BinaryOptionsLabels(name, options, options_condition = null, index = null) = {
["ddb.emit.docker:binary[" + name + "](options)" + (if index != null then "(c" + index + ")" else "")]: options_condition,
["ddb.emit.docker:binary[" + name + "](options)" + (if index != null then "(c" + index + ")" else "")]: options,
[if options_condition != null then "ddb.emit.docker:binary[" + name + "](options_condition)" + (if index != null then "(c" + index + ")" else "")]: options_condition
};

Expand Down

0 comments on commit f404353

Please sign in to comment.