Skip to content

Commit e94f95d

Browse files
committed
Expect rename in launcher.R
1 parent ab5934b commit e94f95d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

_launcher/solution.R

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ ns = solution.path(s)
155155
ext = file.ext(s)
156156
localcmd = if (s %in% c("clickhouse","h2o","juliadf", "juliads")) { # custom launcher bash script, for clickhouse h2o juliadf
157157
sprintf("exec.sh %s", t)
158-
} else sprintf("%s-%s.%s", t, ns, ext)
158+
} else if (s %in% c("dask")) {
159+
sprintf("%s_%s.%s", t, ns, ext)
160+
}else sprintf("%s-%s.%s", t, ns, ext)
159161
cmd = sprintf("./%s/%s", ns, localcmd)
160162
cmd
161163
ret = system(cmd, ignore.stdout=as.logical(args[["quiet"]]))

0 commit comments

Comments
 (0)