Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mamogaaa committed Jun 20, 2024
1 parent cee5717 commit 6351e54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ private[spark] object YTsaurusOperationManager extends Logging {
val unpackArchivesCommands = applicationFiles(conf).map { file =>
filePaths.add(file.toNode())
file.unpackCommand
}.filter(cmd => cmd.isDefined)
}.filter(cmd => cmd.isDefined).map(cmd => cmd.get)

val unpackArchivesCommand = if (unpackArchivesCommands.nonEmpty) {
unpackArchivesCommands.mkString(" && ") + " &&"
Expand Down

0 comments on commit 6351e54

Please sign in to comment.