Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Output: Variable not in scope #11

Open
willbasky opened this issue Aug 20, 2018 · 4 comments
Open

Output: Variable not in scope #11

willbasky opened this issue Aug 20, 2018 · 4 comments

Comments

@willbasky
Copy link
Contributor

After update to 0.5.9 in Linux output return Variable not in scope... for all Tidal functions.
My settings are:

{
  "files.associations": {
    "*.tidal": "haskell"
  },
  "tidalcycles.ghciPath": "stack ghci"
}
@kindohm
Copy link
Owner

kindohm commented Aug 20, 2018

ok. I am going to revert the last change for now so that the published version is not broken.

@kindohm
Copy link
Owner

kindohm commented Aug 20, 2018

@willbasky published 0.5.10 to revert the last change and resolve this issue. can you confirm that your environment now works?

@willbasky
Copy link
Contributor Author

willbasky commented Aug 20, 2018

Now it doesn`t work as it was in 0.5.8 version.

function doSpawn() {
    return new Promise((resolve, reject) => {
        repl = procspawn(config.ghciPath(), ['-XOverloadedStrings']);
        repl.stderr.on('data', (data) => {
            const msg = data.toString('utf8');
            console.error(msg);
            post(msg);
        });
        repl.stdout.on('data', (data) => {
            if (config.showGhciOutput()) post(data.toString('utf8'));
        });
        resolve();
    });
}

is without features for Linux.

@willbasky
Copy link
Contributor Author

willbasky commented Aug 20, 2018

Oh, sorry, I haven't noticed that project's tidal library was not fit my ghc and therefore it returns the error. I updated and changed code to 0.5.9 version and it works. Can we roll back to 0.5.9 for new test?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants