Ooops sorry my bad

On 8/12/23 16:55, Francis Grizzly Smit wrote:
Hi

keep getting this error emailed to me on fez upload of module: Error reading META from your last upload, I have this
deployed

use v6;
use lib 'lib';
use Test;

use Gzz::Text::Utils;
plan 1;

constant AUTHOR = ?%*ENV<AUTHOR_TESTING>;

if AUTHOR {
    require Test::META <&meta-ok>;
    meta-ok;
    done-testing;
}
else {
     skip-rest "Skipping author test";
     exit;
}
and it passes after a few corrections, but still on fez upload it appears to pass but I get that email and it never updates what is wrong??

my MEATA6.json is:


{
    "name" : "Gzz::Text::Utils",
    "description" : "A Raku module to provide text formatting services to Raku programs.  Including a \"sprintf\" alike function \"Sprintf\" that copes better with Ansi highlighted text ...",
    "perl" : "6.d",
    "license" : "LGPL-3.0-or-later",
    "authors" : [
        "Francis Grizzly Smit <griz...@smit.id.au>"
    ],
    "depends": [
        "Terminal::Width",
        "Terminal::WCWidth"
    ],
    "provides" : {
        "Gzz::Text::Utils" : "lib/Gzz/Text/Utils.rakumod"
    },
    "source-url" : "https://github.com/grizzlysmit/Gzz-Text-Utils.git";,
    "support" : {
        "source" : "https://github.com/grizzlysmit/Gzz-Text-Utils.git";,
        "email" : "griz...@smit.id.au",
        "bugtracker": "https://github.com/grizzlysmit/Gzz-Text-Utils/issues";
    },
    "auth": "zef:grizzlysmit",
    "version" : "0.1.13",
    "tags" : [ "text", "formatting", "sprintf clone", "ANSI", "highlighted" ],
  "test-depends": [
  ]
}

--

   .~.     There are many things that I love....
   /V\         but God Comes way above all else❣❣❣❣
  /( )\    Francis (Grizzly) Smit
  ^^-^^http://www.smit.id.au/

Reply via email to