Skip to content

Commit

Permalink
Dogfood the new Globbing
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Nov 11, 2013
1 parent ddf090a commit 83c8c52
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/FakeLib/Globbing/FileSystem.fs
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,8 @@ let inline (++) (x:FileIncludes) pattern = x.And pattern
let inline (--) (x:FileIncludes) pattern = x.ButNot pattern

/// Includes a single pattern and scans the files - !! x = AllFilesMatching x
let inline (!!) x = Include x
let inline (!!) x = Include x

/// Include prefix operator
[<Obsolete("!+ is obsolete - use !! instead")>]
let inline (!+) x = Include x

0 comments on commit 83c8c52

Please sign in to comment.