12 lines
336 B
Bash
Executable File
12 lines
336 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# LinuxCNC source basis: the bridge smoke source list is limited to the
|
|
# canon bridge and kinematics adapters that wrap LinuxCNC canon.hh and
|
|
# src/emc/kinematics behavior for native bridge checks.
|
|
filter=${1:-}
|
|
|
|
./list-project-source-set.sh linuxcnc-bridge-smoke "$filter"
|