From 994e856ccd5555f4ebdfb7e3b589e57dca2b9230 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Sun, 11 Aug 2013 13:44:33 -0700 Subject: [PATCH] Tweak error message when theme file is not found --- tasks/convert-theme.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/convert-theme.coffee b/tasks/convert-theme.coffee index 2d9884ed0..1a38f5f20 100644 --- a/tasks/convert-theme.coffee +++ b/tasks/convert-theme.coffee @@ -14,7 +14,7 @@ module.exports = (grunt) -> grunt.file.write(atomThemePath, textMateTheme.getStylesheet()) grunt.log.ok("Atom theme written to: #{atomThemePath}") else - grunt.log.error("Theme file at path not found: #{textMateThemePath}") + grunt.log.error("No theme file found at: #{textMateThemePath}") false else grunt.log.error('Must specify --path=')