Giter VIP home page Giter VIP logo

Comments (7)

httpete avatar httpete commented on July 3, 2024

or we see unexpected bare identifier

from marionette.

skx avatar skx commented on July 3, 2024

I'm sorry to hear, I did rework the parser a fair bit in #114, but I've not seen anything break personally and I thought I'd been careful.

Do you have a (hopefully small) example that triggers the problem?

from marionette.

skx avatar skx commented on July 3, 2024

Actually now I wonder if it's this that is hitting you:

shell { name    => "Echo Test",
        command => "echo I'm Unix, probably.",
        if      => exists( /bin/ls ) }

Here the /bin/ls causes an error as it is not quoted. I did make a note for myself, but it looks like I didn't address it.

I'll update the examples, but for you I wonder if quoting the arguments to exists and similar might help?

from marionette.

httpete avatar httpete commented on July 3, 2024

from marionette.

skx avatar skx commented on July 3, 2024

I can't guess what you're doing, so without an example I'm struggling here. I did write this simple example using both let and a contains call:

let a = `ls`

log { message => "Logged here",
      unless => contains("${a}", "passwd" ) }

So:

  • Log a message, unless there's a file called passwd in this directory:
frodo ~/Repos/github.com/skx/marionette $ ./marionette test.in 
2022/04/09 16:03:51 [USER] Logged here
frodo ~/Repos/github.com/skx/marionette $ touch passwd
frodo ~/Repos/github.com/skx/marionette $ ./marionette test.in 
frodo ~/Repos/github.com/skx/marionette $ 

The only thing that I think has changed is the need to quote arguments to functions, but if that's not what it is I'm a little lost.

from marionette.

httpete avatar httpete commented on July 3, 2024

from marionette.

skx avatar skx commented on July 3, 2024

Change:

 contains($a, "passwd" ) }

To :

 contains("${a}", "passwd" ) }

And all will be well. I'm not sure the use of $blah should be supported any more.

from marionette.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.