mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
10 lines
300 B
Bash
10 lines
300 B
Bash
#!/bin/bash
|
|
# Functioned-out - may be useful later.
|
|
proc_path()
|
|
{
|
|
PATH="$(perl -lE 'my @p = split/:/,$ENV{PATH}; print join q#:#, grep { ! m#\A/opt/python# } @p;')" "$@"
|
|
}
|
|
make test || exit -1
|
|
make dist || exit -1
|
|
tar -xvf dist/PySolFC-*.tar.xz || exit -1
|
|
(cd PySolFC-*/ && make test) || exit -1
|