mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-12-02 10:15:22 +00:00
10 lines
256 B
Bash
10 lines
256 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
bazel run //lib/tests/write_source_files:write_subdir
|
||
|
[ -e lib/tests/write_source_files/subdir_test/a/b/c/test.txt ]
|
||
|
|
||
|
bazel run //lib/tests/write_source_files:write_subdir
|
||
|
[ -e lib/tests/write_source_files/subdir_test/a/b/c/test.txt ]
|