Skip to content
Snippets Groups Projects

WIP: load an options file everywhere to avoid repetition

Closed Ralf Jung requested to merge ralf/options-file into master
98 files
+ 116
92
Compare changes
  • Side-by-side
  • Inline
Files
98
+ 11
0
 
#!/bin/bash
 
set -e
 
 
for file in $(find -name "*.v"); do
 
if [ "$file" != "./theories/iris_options.v" ]; then
 
if ! fgrep "Load iris_options." "$file" >/dev/null; then
 
echo "iris_options are not being loaded in $file."
 
exit 1
 
fi
 
fi
 
done
Loading