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

Unable to build the project in OS X and GNU/Linux #25

Closed
joakibj opened this issue Oct 31, 2013 · 0 comments
Closed

Unable to build the project in OS X and GNU/Linux #25

joakibj opened this issue Oct 31, 2013 · 0 comments
Assignees
Labels

Comments

@joakibj
Copy link
Owner

joakibj commented Oct 31, 2013

There is an issue with a path separator to export/bbcode during build. It's not compatible with building in GNU/Linux

Basically the backslash is interpreted as escaping the b so it tries to render exportbcode

https://github.com/joakibj/tswcalc/blob/develop/src/javascript/tswcalc-export.js

var startExportBBCode = function() {
        collectAllSlotStates();
        dust.render('export\bbcode', {
            slotState: dustSlotState(),
            summary: tswcalc.summary.collectAllStats()
        },

        function(err, out) {
            if (err) {
                console.log(err);
            }
            el.export_textarea.attr('rows', '10');
            el.export_textarea.html(out);
        });
    };
@ghost ghost assigned joakibj Nov 3, 2013
@joakibj joakibj closed this as completed in 5c0964f Nov 3, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant