8 references to ShellQuote
Aspire.Hosting.Rust.Tests (8)
RustDockerfileShellTests.cs (8)
19
$"mkdir -p {
ShellQuote
(Path.GetDirectoryName(currentArtifact)!)} && " +
20
$"printf current > {
ShellQuote
(currentArtifact)}";
48
$"/bin/sh {
ShellQuote
(cargoStub)}",
74
$"mkdir -p {
ShellQuote
(Path.GetDirectoryName(currentTargetCandidate)!)} && " +
75
$"printf current > {
ShellQuote
(currentTargetCandidate)}";
182
var standardErrorLine = standardError is null ? "" : $"echo {
ShellQuote
(standardError)} >&2\n";
186
$"#!/bin/sh\necho {
ShellQuote
(name)}\" $*\" >> {
ShellQuote
(invocationLog)}\n{standardErrorLine}exit {exitCode}\n");