Skip to content

Commit d9eda7e

Browse files
author
nshaheed
committed
Merge branch 'main' of https://github.com/ccrma/chump
2 parents 61d0d5a + 6e325f7 commit d9eda7e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/chump_doc.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ int main( int argc, const char** argv )
108108
// iterate over package list
109109
for( auto const & p : package_list.get_packages() )
110110
{
111+
// skip over these!
112+
if( p.name == "TestPackage" || p.name == "TestPackageDir" ) continue;
113+
111114
// the path
112115
fs::path pkg_dir = output_dir / p.name;
113116
// if not exist, create directory
@@ -362,7 +365,7 @@ string generate_mainIndex_MD( PackageList pkg_list )
362365
ss << R"(<img src="../../doc/images/downchuck-logo2025c.png" width="35%"></img>
363366
# Downloadable ChucK Packages
364367
365-
This is a listing of all available packages that can be downloaded and installed using [**ChuMP**](../../chump/)—ChucK's (all-new) package manager for macOS, Linux, and Windows. As of ChucK `1.5.5.0`, ChuMP is bundled with the [ChucK release](../) on macOS and Windows (Linux users can [build from source](../../chump/linux-build.html). Many more packages are on the way, from both the ChucK community and ChucK Team. Please visit the [ChuMP site](../../chump/) for more information on using and contributing to ChuMP.
368+
This is a listing of all available packages that can be downloaded and installed using [**ChuMP**](../../chump/)—ChucK's (all-new) package manager for macOS, Linux, and Windows. As of ChucK `1.5.5.0`, ChuMP is bundled with the [ChucK release](../) on macOS and Windows (Linux users can [build from source](../../chump/linux-build.html)). Many more packages are on the way, from both the ChucK community and ChucK Team. Please visit the [ChuMP site](../../chump/) for more information on using and contributing to ChuMP.
366369
367370
BTW it is also possible to browse packages using ChuMP in terminal:
368371
@@ -384,6 +387,9 @@ To list packages currently installed on your computer:
384387
// iterate over packages
385388
for( auto & p : packages )
386389
{
390+
// skip over these!
391+
if( p.name == "TestPackage" || p.name == "TestPackageDir" ) continue;
392+
387393
// optional<PackageVersion> mac = p.latest_version( "mac" );
388394
// string version = (mac ? " (" + mac.value().getVersionString() + ")" : "");
389395
string version = ""; // empty for now

0 commit comments

Comments
 (0)