Skip to content

Commit

Permalink
Escape asset folder
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Jun 6, 2024
1 parent bfe6bea commit 509a0df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ private void writeProgramArguments(UserDevRunType runConfig) throws IOException
case "{assets_root}" -> arg = Objects.requireNonNull(assetProperties.assetsRoot(), "assets_root");
case "{asset_index}" -> arg = Objects.requireNonNull(assetProperties.assetIndex(), "asset_index");
}
lines.add(arg);
lines.add(RunUtils.escapeJvmArg(arg));
}
lines.add("");

Expand Down

0 comments on commit 509a0df

Please sign in to comment.