8 lines
178 B
Bash
8 lines
178 B
Bash
#!/bin/bash
|
|
# Helper library sourced by sample.sh — used to verify `source` is
|
|
# resolved to a real file by _resolve_module_to_file.
|
|
|
|
lib_helper() {
|
|
echo "helper called"
|
|
}
|