-
Notifications
You must be signed in to change notification settings - Fork 16
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
Comments
ok. I am going to revert the last change for now so that the published version is not broken. |
@willbasky published 0.5.10 to revert the last change and resolve this issue. can you confirm that your environment now works? |
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. |
Oh, sorry, I haven't noticed that project's |
After update to 0.5.9 in Linux output return
Variable not in scope...
for all Tidal functions.My settings are:
The text was updated successfully, but these errors were encountered: