mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-07 22:53:39 +01:00
15 lines
387 B
Bash
Executable File
15 lines
387 B
Bash
Executable File
#!/bin/bash -x
|
|
# This script should be included by all other scripts in this directory
|
|
|
|
set -u # All variables should be defined
|
|
set -e # The script should exit if something goes wrong
|
|
|
|
BUILD="_build/${TARGET}"
|
|
rm -rf -- "${BUILD}"
|
|
mkdir "${BUILD}"
|
|
tar -zxf "Downloads/${TARGET}.tar.gz" --strip-components=1 --directory="${BUILD}"
|
|
_install
|
|
rm -rf -- "${BUILD}" "${BUILD}.log"
|
|
exit 0
|
|
|