Skip to content

Commit

Permalink
fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tulsishah committed Jul 11, 2023
1 parent ae748b5 commit 6f8ebb8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -31,7 +31,7 @@ func makePersistentMountingArgs(flags []string) (args []string, err error) {
// We are already passing flags with -o flag.
s = strings.Replace(flags[i], "--o=", "", -1)
// e.g. Convert --enable-storage-client-library to __enable_storage_client_library
s = strings.Replace(flags[i], "-", "_", -1)
s = strings.Replace(s, "-", "_", -1)
// e.g. Convert __enable_storage_client_library to enable_storage_client_library
s = strings.Replace(s, "__", "", -1)
args = append(args, s)
Expand Down

0 comments on commit 6f8ebb8

Please sign in to comment.