diff --git a/cmd/kcl/commands/lint.go b/cmd/kcl/commands/lint.go index f52225b..2be5bc2 100644 --- a/cmd/kcl/commands/lint.go +++ b/cmd/kcl/commands/lint.go @@ -17,10 +17,10 @@ For example, 'kcl lint path/to/kcl.k' will lint the file named path/to/kcl.k # Lint multiple files kcl lint path/to/kcl1.k path/to/kcl2.k - + # Lint OCI packages kcl lint oci://ghcr.io/kcl-lang/helloworld - + # Lint the current package kcl lint` ) diff --git a/cmd/kcl/commands/run.go b/cmd/kcl/commands/run.go index 634e367..223d43b 100644 --- a/cmd/kcl/commands/run.go +++ b/cmd/kcl/commands/run.go @@ -20,10 +20,10 @@ For example, 'kcl run path/to/kcl.k' will run the file named path/to/kcl.k # Run multiple files kcl run path/to/kcl1.k path/to/kcl2.k - + # Run OCI packages kcl run oci://ghcr.io/kcl-lang/helloworld - + # Run remote Git repo kcl run https://github.com/kcl-lang/flask-demo-kcl-manifests