浏览代码

Missing semicolon

Gaël Métais 10 年之前
父节点
当前提交
c1b5a8625a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      bin/cli.js

+ 1 - 1
bin/cli.js

@@ -41,7 +41,7 @@ if (screenshot) {
         // It is not an absolute path, so it is relative to the current command-line directory
         screenshot = path.join(process.cwd(), screenshot);
     }
-    options.screenshot = cli.flags.screenshot
+    options.screenshot = cli.flags.screenshot;
 }