github.com/KusionStack/kpm@v0.8.4-0.20240326033734-dc72298a30e5/pkg/cmd/cmd_flags.go (about)

     1  // Copyright 2023 The KCL Authors. All rights reserved.
     2  // This file provides all the flags in the kpm cli.
     3  //
     4  // Deprecated: The entire contents of this file will be deprecated. 
     5  // Please use the kcl cli - https://github.com/kcl-lang/cli.
     6  
     7  package cmd
     8  
     9  const FLAG_INPUT = "input"
    10  const FLAG_VENDOR = "vendor"
    11  const FLAG_UPDATE = "update"
    12  const FLAG_TAG = "tag"
    13  const FLAG_TAR_PATH = "tar_path"
    14  
    15  const FLAG_SETTING = "setting"
    16  const FLAG_DISABLE_NONE = "disable_none"
    17  const FLAG_ARGUMENT = "argument"
    18  const FLAG_OVERRIDES = "overrides"
    19  const FLAG_SORT_KEYS = "sort_keys"
    20  
    21  const FLAG_QUIET = "quiet"
    22  const FLAG_NO_SUM_CHECK = "no_sum_check"