镜像自地址
https://github.com/JGZYES/ParlzPackageManger.git
已同步 2026-09-11 05:42:44 +08:00
11 行
453 B
Bash
11 行
453 B
Bash
#!/bin/sh
|
|
# Placeholder executable for the example-pdm package.
|
|
#
|
|
# After `pmm pack examples/example-pdm example.pdm` and
|
|
# `pmm install example.pdm`, this file is unpacked into the install root
|
|
# and <root>/bin/ is added to PATH, so you can run `hello` directly.
|
|
#
|
|
# In a real package, replace this with your actual binary (or put the
|
|
# platform-specific executable here for each variant you build).
|
|
echo "hello from example-pdm (pmm package manager)"
|