13 lines
209 B
Go
13 lines
209 B
Go
package clientcmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
//IgnoreFiles ignores file(s)/folder based on name/wildcard, etc
|
|
func IgnoreFiles() error {
|
|
fmt.Println("File/folder/wildcard to ignore", os.Args[2])
|
|
return nil
|
|
}
|