We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b49823b commit f1b710dCopy full SHA for f1b710d
fly.js
@@ -86,7 +86,7 @@ GDF.extend(class extends GDF {
86
87
const extensions = (process.env.PATHEXT || '').split(';')
88
89
- const candidates = function* () {
+ const candidates = function * () {
90
for (const dir of paths) {
91
for (const ext of extensions) {
92
yield path.join(dir, exe + ext)
@@ -318,7 +318,7 @@ GDF.extend(class extends GDF {
318
319
async selectShopifyConfig() {
320
// Search for both shopify.app.toml and shopify.app.*.toml
321
- const files = await glob('shopify.app{.,*.}toml');
+ const files = await glob('shopify.app{.,*.}toml')
322
323
if (files.length === 0) {
324
return null
0 commit comments