From 198d1fede962814efbb2cc4883659c29492a2048 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Sun, 29 Apr 2018 09:30:22 -0400 Subject: [PATCH] ignore/types: fix typo in puppet glob Thanks @CYBAI for noticing this! See #899 --- ignore/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 9737d67..b662423 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -215,7 +215,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("pod", &["*.pod"]), ("protobuf", &["*.proto"]), ("ps", &["*.cdxml", "*.ps1", "*.ps1xml", "*.psd1", "*.psm1"]), - ("puppet", &[".erb", "*.pp", "*.rb"]), + ("puppet", &["*.erb", "*.pp", "*.rb"]), ("purs", &["*.purs"]), ("py", &["*.py"]), ("qmake", &["*.pro", "*.pri", "*.prf"]),