diff options
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/pkgs/001-gcc.sh | 5 | ||||
-rwxr-xr-x | etc/pkgs/002-binutils.sh | 4 | ||||
-rwxr-xr-x | etc/pkgs/003-openssl.sh | 2 | ||||
-rwxr-xr-x | etc/pkgs/004-nodejs.sh | 2 | ||||
-rwxr-xr-x | etc/pkgs/005-tini.sh | 2 |
5 files changed, 9 insertions, 6 deletions
diff --git a/etc/pkgs/001-gcc.sh b/etc/pkgs/001-gcc.sh index 62ddae0..9cce7b0 100755 --- a/etc/pkgs/001-gcc.sh +++ b/etc/pkgs/001-gcc.sh @@ -1,5 +1,6 @@ -#!/bin/bash -e -set -x +#!/bin/bash +set -xe + name=gcc version=8.2.0 url=http://mirrors-usa.go-parts.com/gcc/releases/${name}-${version}/${name}-${version}.tar.gz diff --git a/etc/pkgs/002-binutils.sh b/etc/pkgs/002-binutils.sh index 4c2e13d..8b1d8cb 100755 --- a/etc/pkgs/002-binutils.sh +++ b/etc/pkgs/002-binutils.sh @@ -1,4 +1,6 @@ -#!/bin/bash -x +#!/bin/bash +set -xe + name=binutils version=2.31.1 url=https://ftp.gnu.org/gnu/binutils/${name}-${version}.tar.gz diff --git a/etc/pkgs/003-openssl.sh b/etc/pkgs/003-openssl.sh index 92a4658..184d738 100755 --- a/etc/pkgs/003-openssl.sh +++ b/etc/pkgs/003-openssl.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -x +set -xe name="openssl" version="1.1.0j" diff --git a/etc/pkgs/004-nodejs.sh b/etc/pkgs/004-nodejs.sh index b52a229..1e68cca 100755 --- a/etc/pkgs/004-nodejs.sh +++ b/etc/pkgs/004-nodejs.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -x +set -xe name=node version=v10.15.0 diff --git a/etc/pkgs/005-tini.sh b/etc/pkgs/005-tini.sh index 44bb172..12d44a7 100755 --- a/etc/pkgs/005-tini.sh +++ b/etc/pkgs/005-tini.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -x +set -xe sudo yum install -y cmake glibc-static || exit 1 git clone https://github.com/krallin/tini.git |