Browse Source

Missing semicolon

Gaël Métais 10 năm trước cách đây
mục cha
commit
c1b5a8625a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;
 }