]> Dogcows Code - chaz/graphql-client/commitdiff
add a few more fixups before release
authorCharles McGarvey <chazmcgarvey@brokenzipper.com>
Mon, 16 Mar 2020 00:02:18 +0000 (18:02 -0600)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Mon, 16 Mar 2020 00:03:00 +0000 (18:03 -0600)
.gitignore
Makefile
bin/graphql
maint/fatpack.pl

index eb4bee2316eb80c3117840685a99ef43ad3a6bbb..959777029ee6b881e816c03ba39cee5ae32713e8 100644 (file)
@@ -9,5 +9,7 @@
 /MYMETA.*
 /blib
 /cover_db
+/fatlib
+/graphql
 /local*
 /pm_to_blib
index d12cda5ddcd269dc980203d4e21e2aab9851fc67..f8b5750a905c23455731677e652a4cf0d8d26b33 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ dist:
        $(DZIL) build
 
 distclean: clean
-       rm -rf cover_db
+       rm -rf .build cover_db fatlib
 
 test:
        $(PROVE) -l$(if $(findstring 1,$(V)),v) t
index 6afa7711c768a527dd7a0de1d10666921736e6f7..82025c4c7d2a119e27b18c77e671b376d617d038 100755 (executable)
@@ -331,7 +331,7 @@ See L</EXAMPLES>.
 
 =head1 FORMAT
 
-The C<--format> argument can be one of:
+The argument for L</"--format STR"> can be one of:
 
 =for :list
 * C<csv> - Comma-separated values (requires L<Text::CSV>)
index 2748081e4905a02987c5be77ca3da53be0a0851e..66497fa281971e51603c81d596f0c462e538e8fa 100755 (executable)
@@ -80,6 +80,8 @@ sub run {
     $moduledir->mkpath;
     system(qw{cp -r}, $fatlibdir, $distdir->child('lib'), "$moduledir/");
 
+    $moduledir->child('fatlib/Test')->remove_tree({safe => 0});     # don't need Test:: modules
+
     my $fatpack = do {
         my $cd_builddir = pushd($moduledir);
 
This page took 0.026247 seconds and 4 git commands to generate.