You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,32 +7,32 @@
7
7
The openmcp bootstrapper is a command line tool that is able to set up an openmcp landscape initially and to update existing openmcp landscapes with new versions of the openmcp project.
8
8
9
9
Supported commands:
10
-
*`ocmTransfer`: Transfers the specified OCM component version from the source location to the destination location.
10
+
*`ocmTransfer`: Transfers the specified OCM component version from the source location to the target location.
11
11
12
12
### `ocmTransfer`
13
13
14
-
The `ocmTransfer` command is used to transfer an OCM component version from a source location to a destination location.
14
+
The `ocmTransfer` command is used to transfer an OCM component version from a source location to a target location.
15
15
The `ocmTransfer` requires the following parameters:
16
16
*`source`: The source location of the OCM component version to be transferred.
17
-
*`destination`: The destination location where the OCM component version should be transferred to.
17
+
*`target`: The target location where the OCM component version should be transferred to.
Copy file name to clipboardExpand all lines: internal/ocm-cli/ocm.go
+31-29Lines changed: 31 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,10 @@ package ocm_cli
3
3
import (
4
4
"context"
5
5
"fmt"
6
-
"gopkg.in/yaml.v3"
7
6
"os"
8
7
"os/exec"
8
+
9
+
"sigs.k8s.io/yaml"
9
10
)
10
11
11
12
const (
@@ -19,16 +20,16 @@ const (
19
20
// The `args` parameter is a slice of strings representing the arguments to the command.
20
21
// The `ocmConfig` parameter is a string representing the path to the OCM configuration file. Passing `NoOcmConfig` indicates that no configuration file should be used.
0 commit comments