11 lines
249 B
Bash
11 lines
249 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ ! -d libraries ]; then
|
||
|
echo Is CWD a ghc source tree?
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cd libraries
|
||
|
|
||
|
grep -i ^version: Cabal/Cabal/Cabal.cabal */*.cabal | grep -v -e "\(Win32\|gmp.old\|gmp2\|integer-simple\|ghc-boot\)" | sed -e "s!/.*: \+!_ver !"
|