Hi Gianni, I'm not sure of the Perl5 case, but what you're saying is,
if your target string is backslashed, be sure to "quote-interpolate
it" in Perl6? (see below):
say matching_chars( '+/][', 'Apple ][+//e' ); # says (「][+//」)
say matching_chars( '+\/\]\[', 'Apple ][+//e' ); # says (「][+//」)
say
On Wed, Sep 4, 2019 at 7:22 AM Fernando Santagata
wrote:
>
> On Wed, Sep 4, 2019 at 4:07 PM Tom Browder wrote:
>>
>> On Wed, Sep 4, 2019 at 05:53 Fernando Santagata
>> wrote:
>>>
>>>
>>> On Wed, Sep 4, 2019 at 12:21 PM William Michels
>>> wrote:
Hi Fernando, I'm not sure I understan
On Wed, Sep 4, 2019 at 4:07 PM Tom Browder wrote:
> On Wed, Sep 4, 2019 at 05:53 Fernando Santagata
> wrote:
>
>>
>> On Wed, Sep 4, 2019 at 12:21 PM William Michels
>> wrote:
>>
>>> Hi Fernando, I'm not sure I understand. Is this for module
>>> development? And you want to purge old versions of
On Wed, Sep 4, 2019 at 05:53 Fernando Santagata
wrote:
>
> On Wed, Sep 4, 2019 at 12:21 PM William Michels
> wrote:
>
>> Hi Fernando, I'm not sure I understand. Is this for module
>> development? And you want to purge old versions of a module you're
>> developing, before doing a 'git push'?
>
>
On Wed, Sep 4, 2019 at 12:21 PM William Michels
wrote:
> Hi Fernando, I'm not sure I understand. Is this for module
> development? And you want to purge old versions of a module you're
> developing, before doing a 'git push'?
>
Yes, it's for module development.
What I do is to actually install,
Hi Fernando, I'm not sure I understand. Is this for module
development? And you want to purge old versions of a module you're
developing, before doing a 'git push'?
I'm not sure about an anonymous uninstall in the pwd ("."), but there
might be a way to set up a separate 'DevDir', and then use the
Hello,
apparently there's no analogous of "zef install ." to uninstall a module,
i.e. an "anonymous" way to do it.
The problem that I'm trying to solve is to automatically uninstall and
reinstall a module before a "git push". In order to do this I'm using the
git pre-push hook.
So far my pre-push