mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-06 22:23:39 +01:00
12 lines
160 B
Bash
12 lines
160 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ -z ${QMCCHEM_PATH} ]]
|
||
|
then
|
||
|
echo "Error: qmcchemrc not loaded"
|
||
|
exit -1
|
||
|
fi
|
||
|
|
||
|
cd ${QMCCHEM_PATH}/src/IRPF90_temp || exit -1
|
||
|
|
||
|
exec ninja ${@}
|