apt-get install -y curl zip unzip tar.

This commit is contained in:
Alexander Arlt 2022-03-25 12:53:55 -05:00
parent c74bca8c67
commit ebf3f6156d
5 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
set -e set -e
apt-get update apt-get update
apt-get install curl zip unzip tar apt-get install -y curl zip unzip tar
git submodule update --init --recursive git submodule update --init --recursive
ROOTDIR="$(dirname "$0")/.." ROOTDIR="$(dirname "$0")/.."

View File

@ -29,7 +29,7 @@
set -e set -e
apt-get update apt-get update
apt-get install curl zip unzip tar apt-get install -y curl zip unzip tar
git submodule update --init --recursive git submodule update --init --recursive
if test -z "$1"; then if test -z "$1"; then

View File

@ -2,7 +2,7 @@
set -ex set -ex
apt-get update apt-get update
apt-get install curl zip unzip tar apt-get install -y curl zip unzip tar
git submodule update --init --recursive git submodule update --init --recursive
ROOTDIR="$(dirname "$0")/../.." ROOTDIR="$(dirname "$0")/../.."

View File

@ -35,7 +35,7 @@
set -ev set -ev
apt-get update apt-get update
apt-get install curl zip unzip tar apt-get install -y curl zip unzip tar
git submodule update --init --recursive git submodule update --init --recursive
if test -z "$1"; then if test -z "$1"; then

View File

@ -2,7 +2,7 @@
set -ex set -ex
apt-get update apt-get update
apt-get install curl zip unzip tar apt-get install -y curl zip unzip tar
git submodule update --init --recursive git submodule update --init --recursive
ROOTDIR="/root/project" ROOTDIR="/root/project"