소스 검색

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;
 }