Skip to content

Commit

Permalink
Fix command generation for .
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiago Farias committed May 19, 2020
1 parent 1a850b8 commit 5879a5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/utility/libraries.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ def _impl(ctx):
transitive_files.append(dbfs[FsInfo].stamp_file)
variables+=['STAMP=$(cat %s)' % dbfs[FsInfo].stamp_file.short_path]

if api_cmd == "install":
cmd+=["exe '%s'" % dbfs[DefaultInfo].files_to_run.executable.short_path]
if api_cmd == "install":
cmd+=["exe '%s'" % dbfs[DefaultInfo].files_to_run.executable.short_path]

cmd+=[cmd_template.format(OPTIONS = "--jar %s" % f) for f in dbfs[FsInfo].dbfs_files_path]
cmd+=[cmd_template.format(OPTIONS = "--jar %s" % f) for f in dbfs[FsInfo].dbfs_files_path]

if ctx.attr.maven_info:
for (r, cs) in ctx.attr.maven_info.items():
Expand Down

0 comments on commit 5879a5a

Please sign in to comment.