Skip to content

Commit

Permalink
Merge pull request #85 from garymathews/18792
Browse files Browse the repository at this point in the history
[TIMOB-18792] Fix alloy compile command
  • Loading branch information
muhammaddadu committed Apr 17, 2015
2 parents 7d9a2c2 + bf8b907 commit 6031fa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ FServer.start = function(opts) {
if (isBuilding) { return log('[LiveView]'.green, 'File changes ignored while Alloy compiling'); }
isBuilding = true;
log('[LiveView]'.green, 'Alloy recompile initiated for', PLATFORM);
exec('alloy compile \"' + ALLOY_DIR + '\" --no-colors --config platform=' + PLATFORM, {silent: true}, function (code, error) {
exec('appc alloy compile \"' + ALLOY_DIR + '\" --no-colors --config platform=' + PLATFORM, {silent: true}, function (code, error) {
isBuilding = false;
if(code) { return logError('[LiveView]'.red, error); }
evtServer.emit('change', file);
Expand Down

0 comments on commit 6031fa2

Please sign in to comment.