Skip to content

Commit

Permalink
Merge pull request #7025 from cb1kenobi/timob-19297
Browse files Browse the repository at this point in the history
[TIMOB-19297] Asset catalog support for app icons and launch images.
  • Loading branch information
cb1kenobi committed Aug 14, 2015
2 parents 7d210cb + ae07798 commit bfa0e5c
Show file tree
Hide file tree
Showing 38 changed files with 849 additions and 275 deletions.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = function (grunt) {
// Project configuration.
grunt.initConfig({
appcJs: {
src: ['Gruntfile.js', 'apidoc/**/*.js', '!apidoc/node_modules/**']
src: ['apidoc/**/*.js', '!apidoc/node_modules/**']
},
clangFormat: {
src: [] // unused ATM
Expand Down Expand Up @@ -37,6 +37,7 @@ module.exports = function (grunt) {
}

grunt.log.writeln('Removing old Node modules');

function rm(dir, ignore) {
fs.existsSync(dir) && fs.readdirSync(dir).forEach(function (name) {
var file = path.join(dir, name);
Expand Down
2 changes: 1 addition & 1 deletion cli/commands/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ exports.run = function (logger, config, cli, finished) {
logger.error(__('An error occurred during build after %s', delta));
if (err instanceof appc.exception) {
err.dump(logger.error);
} else {
} else if (err !== true) {
(err.message || err.toString()).trim().split('\n').forEach(function (msg) {
logger.error(msg);
});
Expand Down

0 comments on commit bfa0e5c

Please sign in to comment.