forked from Lainports/freebsd-ports
The goals of ShellCheck are: * To point out and clarify typical beginner's syntax issues, that causes a shell to give cryptic error messages. * To point out and clarify typical intermediate level semantic problems, that causes a shell to behave strangely and counter-intuitively. * To point out subtle caveats, corner cases and pitfalls, that may cause an advanced user's otherwise working script to fail under future circumstances. WWW: http://www.shellcheck.net/ PR: 197302 Submitted by: luca.pizzamiglio@gmail.com Obtained from: FreeBSD Haskell
28 lines
656 B
Text
28 lines
656 B
Text
--- ShellCheck.cabal.orig 2014-11-10 01:30:00.000000000 +0100
|
|
+++ ShellCheck.cabal 2015-02-03 18:19:38.355225341 +0100
|
|
@@ -42,7 +42,7 @@
|
|
mtl,
|
|
parsec,
|
|
regex-compat,
|
|
- QuickCheck >= 2.7.4
|
|
+ QuickCheck >= 2.6
|
|
exposed-modules:
|
|
ShellCheck.Analytics
|
|
ShellCheck.AST
|
|
@@ -64,7 +64,7 @@
|
|
parsec,
|
|
regex-compat,
|
|
transformers,
|
|
- QuickCheck >= 2.7.4
|
|
+ QuickCheck >= 2.6
|
|
main-is: shellcheck.hs
|
|
|
|
test-suite test-shellcheck
|
|
@@ -79,6 +79,6 @@
|
|
parsec,
|
|
regex-compat,
|
|
transformers,
|
|
- QuickCheck >= 2.7.4
|
|
+ QuickCheck >= 2.6
|
|
main-is: test/shellcheck.hs
|
|
|