Skip to content

Commit

Permalink
[ travis ] ignore other sources of unsafe code
Browse files Browse the repository at this point in the history
  • Loading branch information
gallais committed Aug 8, 2018
1 parent 0a62e0c commit 3de5757
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion travis/index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@ for i in $( find src -name "*.agda" \
| sort \
); do
echo "import $i" >> index.agda;
if [[ ! $i == *Unsafe ]]; then echo "import $i" >> safe.agda; fi
if [[ ! $i == *Unsafe \
&& ! $i == Reflection \
&& ! $i == IO* \
&& ! $i == *TrustMe ]]; then echo "import $i" >> safe.agda; fi
done

0 comments on commit 3de5757

Please sign in to comment.