Skip to content

Commit

Permalink
use all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
hkollmann committed Apr 14, 2024
1 parent 10f1b88 commit 8526cd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ qx.Class.define("qxl.packagebrowser.compile.LibraryApi", {
// update and generate list data
this.__addCmd(`qx pkg update`, "Updating package data...");
this.__addCmd(
`qx pkg list --json ${additionalParams} > ${datafilePath}`,
`qx pkg list --all --json ${additionalParams} > ${datafilePath}`,
"Generating local metadata file..."
);

Expand All @@ -74,7 +74,7 @@ qx.Class.define("qxl.packagebrowser.compile.LibraryApi", {
}
fs.mkdirSync(targetDir);
console.log(`>>> Installing all compatible packages...`);
let stdout = execSync(`qx pkg list --uris-only`);
let stdout = execSync(`qx pkg list --uris-only --all`);
let packages = stdout
.toString()
.split("\n")
Expand Down

0 comments on commit 8526cd2

Please sign in to comment.