瀏覽代碼

Merge pull request #719 from mkroehnert/amberc

amberc-cli: the path for amber_dir has changed
Nicolas Petton 10 年之前
父節點
當前提交
26ec6cb9d8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      cli/support/amberc-cli.js

+ 1 - 1
cli/support/amberc-cli.js

@@ -16,7 +16,7 @@ if (1 > parameters.length) {
 
 // Get Amber root directory from the location of this script so that
 // we can find the st and js directories etc.
-var amber_dir = path.normalize(path.join(path.dirname(process.argv[1]), '..'));
+var amber_dir = path.normalize(path.join(path.dirname(process.argv[1]), '..', '..'));
 
 var compiler = new amberc.Compiler(amber_dir);