12 lines
339 B
Bash
Executable File
12 lines
339 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# LinuxCNC source basis: the RS274 dump probe pairs LinuxCNC interpreter
|
|
# sources with the canon bridge, tooldata fixture, and kinematics adapters
|
|
# needed to serialize LinuxCNC-backed canonical events.
|
|
filter=${1:-}
|
|
|
|
./list-project-source-set.sh linuxcnc-rs274-dump "$filter"
|