10 lines
309 B
Bash
Executable file
10 lines
309 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Test the .exec rule
|
|
echo exec
|
|
basic_graph.exec < <(basic_graph.analyze /tmp/databuild_test/examples/basic_graph/generated_number/pippin_salem_sadie)
|
|
|
|
# Test the .build rule
|
|
echo build
|
|
basic_graph.build /tmp/databuild_test/examples/basic_graph/generated_number/pippin_salem_sadie
|