diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7809d8f..f5135e2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,9 +56,10 @@ jobs: ${{ matrix.cc }} -O2 -Wall -static -std=c11 -D_GNU_SOURCE -D_FORTIFY_SOURCE=0 -U_FORTIFY_SOURCE -DPMM_VERSION=\"$VER\" -o out/${{ matrix.bin }} \ src/main.c src/json.c src/ini.c src/pmm.c src/http.c src/repo.c src/install.c \ src/sha256.c src/sha1.c src/mirrors.c src/pdm.c src/out.c src/i18n.c - # -- pmu upload/publish client (also shipped per-platform) - ${{ matrix.cc }} -O2 -Wall -static -std=c11 -D_GNU_SOURCE -D_FORTIFY_SOURCE=0 -U_FORTIFY_SOURCE -o out/pmu${{ matrix.ext }} \ - src/pmu.c src/out.c src/sha256.c + # -- ppdm package dev tool (register/login/update/pack/publish) + ${{ matrix.cc }} -O2 -Wall -static -std=c11 -D_GNU_SOURCE -D_FORTIFY_SOURCE=0 -U_FORTIFY_SOURCE -o out/ppdm${{ matrix.ext }} \ + src/ppdm.c src/pmm.c src/json.c src/ini.c src/http.c src/repo.c src/install.c \ + src/sha256.c src/sha1.c src/mirrors.c src/pdm.c src/out.c src/i18n.c - name: Package installers run: | diff --git a/src/pmu.c b/src/ppdm.c similarity index 100% rename from src/pmu.c rename to src/ppdm.c diff --git a/web/pmu/data/.htaccess b/web/ppdm/data/.htaccess similarity index 100% rename from web/pmu/data/.htaccess rename to web/ppdm/data/.htaccess diff --git a/web/pmu/lib.php b/web/ppdm/lib.php similarity index 100% rename from web/pmu/lib.php rename to web/ppdm/lib.php diff --git a/web/pmu/login.php b/web/ppdm/login.php similarity index 100% rename from web/pmu/login.php rename to web/ppdm/login.php diff --git a/web/pmu/logout.php b/web/ppdm/logout.php similarity index 100% rename from web/pmu/logout.php rename to web/ppdm/logout.php diff --git a/web/pmu/publish.php b/web/ppdm/publish.php similarity index 100% rename from web/pmu/publish.php rename to web/ppdm/publish.php diff --git a/web/pmu/register.php b/web/ppdm/register.php similarity index 100% rename from web/pmu/register.php rename to web/ppdm/register.php