Skip to content

Commit f1b710d

Browse files
committed
appease eslint
1 parent b49823b commit f1b710d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fly.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ GDF.extend(class extends GDF {
8686

8787
const extensions = (process.env.PATHEXT || '').split(';')
8888

89-
const candidates = function* () {
89+
const candidates = function * () {
9090
for (const dir of paths) {
9191
for (const ext of extensions) {
9292
yield path.join(dir, exe + ext)
@@ -318,7 +318,7 @@ GDF.extend(class extends GDF {
318318

319319
async selectShopifyConfig() {
320320
// Search for both shopify.app.toml and shopify.app.*.toml
321-
const files = await glob('shopify.app{.,*.}toml');
321+
const files = await glob('shopify.app{.,*.}toml')
322322

323323
if (files.length === 0) {
324324
return null

0 commit comments

Comments
 (0)