We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b15a5 commit 8e4be45Copy full SHA for 8e4be45
examples/cp/Cp.cs
@@ -22,7 +22,7 @@ private static async Task Main(string[] args)
22
var pods = client.CoreV1.ListNamespacedPod("default", null, null, null, $"job-name=upload-demo");
23
var pod = pods.Items.First();
24
25
- int res = await CopyFileToPodAsync(pod.Metadata.Name, "default", "upload-demo", "demo.txt", "home/demo.txt");
+ await CopyFileToPodAsync(pod.Metadata.Name, "default", "upload-demo", args[1], "home/demo.txt");
26
27
}
28
0 commit comments