diff options
author | Daniil Baturin <daniil@baturin.org> | 2016-12-13 07:57:56 +0600 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2016-12-13 07:57:56 +0600 |
commit | 2b1083df2a7ceb87679c5d071bb9752c0ee7a352 (patch) | |
tree | 4917237854eeb042d283d1878a999279072ab1ed | |
parent | 658c297efca6deb669062ab8e2582f8abe25373e (diff) | |
download | vyconf-2b1083df2a7ceb87679c5d071bb9752c0ee7a352.tar.gz vyconf-2b1083df2a7ceb87679c5d071bb9752c0ee7a352.zip |
Add -strict-sequence flag.
The correct way to write sequences with expressions of type other than unit
is to use the ignore function: ignore 42; exit 0
-rw-r--r-- | _tags | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,19 @@ +# OASIS_START +# DO NOT EDIT (digest: e1fbaa814f6e84974fc385e5d815bf45) +# Ignore VCS directories, you can use the same kind of rule outside +# OASIS_START/STOP if you want to exclude directories that contains +# useless stuff for the build process +<**/.svn>: -traverse +<**/.svn>: not_hygienic +".bzr": -traverse +".bzr": not_hygienic +".hg": -traverse +".hg": not_hygienic +".git": -traverse +".git": not_hygienic +"_darcs": -traverse +"_darcs": not_hygienic +# Executable vyconfd +# OASIS_STOP + +true: strict_sequence |