mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-10 08:20:59 +00:00
Make plugin dir match Go conventions.
This commit is contained in:
11
plugin/someteam.example.com/v1/SedTransformer
Executable file
11
plugin/someteam.example.com/v1/SedTransformer
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Skip the config file name argument.
|
||||
shift
|
||||
|
||||
args=""
|
||||
for arg in $@; do
|
||||
args="$args -e $arg"
|
||||
done
|
||||
|
||||
cat - | sed $args
|
||||
Reference in New Issue
Block a user