mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
196 B
10 lines
196 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
### Test data dependecy
|
||
|
|
||
4 years ago
|
if ! python ./examples/scripts/data_dependency.py ./examples/scripts/data_dependency.sol; then
|
||
6 years ago
|
echo "data dependency failed"
|
||
|
exit 1
|
||
|
fi
|
||
|
exit 0
|