2
0
Fork 0
genodepkgs/tests/common-test-driver.exp

11 lines
184 B
Plaintext
Raw Normal View History

2019-10-08 09:13:07 +02:00
#!/usr/bin/env expect
proc collect_modules {arg} {
global modules
foreach path [glob $arg] {
set name [file tail $path]
file link -s $name $path
append modules " $name "
}
}