https://github.com/CGAL/cgal
Raw File
Tip revision: 1771c23ba6ff5a77d0caff5c8026649ec8747ab1 authored by Laurent Rineau on 05 March 2014, 17:18:05 UTC
updated crontab (automated commit)
Tip revision: 1771c23
pkglist_filter
#!/bin/sh

if which python2 2>/dev/null >/dev/null; then 
    exec python2 ${CMAKE_BINARY_DIR}/pkglist_filter.py "$1"
elif which python2.7 2>/dev/null >/dev/null; then 
    exec python2.7 ${CMAKE_BINARY_DIR}/pkglist_filter.py "$1"
elif which python2.6 2>/dev/null >/dev/null; then 
    exec python2.6 ${CMAKE_BINARY_DIR}/pkglist_filter.py "$1"
fi
back to top