im trying to use c9.io to develop a Meteor app. I want to setup a symlinkSync using:
var require = __meteor_bootstrap__.require;
var fs = require('fs');
fs.symlinkSync('../../../../_storage', '.meteor/local/build/static/s');
im getting: Error: ENOENT, no such file or directory '.meteor/local/build/static/s'
and its true that the static/s folder doesn't exist. But on my local Meteor installation this is working just fine. If I reference a folder that already exists, then it errors: Folder already exist!
The prospects of using c9 to build Meteor apps are astounding! Lets get this working, anyone?
Thanks.