Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
hot fix install projects query
Browse files Browse the repository at this point in the history
  • Loading branch information
HexaField committed Jun 17, 2024
1 parent 7dfaab9 commit 0aaa58a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install-projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async function installAllProjects() {
if (!fs.existsSync(localProjectDirectory)) fs.mkdirSync(localProjectDirectory, { recursive: true })
logger.info('running installAllProjects')

const projects = await app.service(projectPath).find({ paginate: false, assetsOnly: false })
const projects = await app.service(projectPath).find({ paginate: false, query: { assetsOnly: false } })
logger.info('found projects %o', projects)
await Promise.all(projects.map((project) => download(project.name)))
const updatedProject = await app
Expand Down

0 comments on commit 0aaa58a

Please sign in to comment.