Skip to content

Commit

Permalink
dist: Add -V option to apt-get in apt-install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
akirakw committed Jan 15, 2024
1 parent 5c3881e commit 43adea9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dist/install/apt-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi
export DEBIAN_FRONTEND=noninteractive

apt-get update -y
apt-get install -y \
apt-get install -y -V \
bison \
build-essential \
cmake \
Expand Down Expand Up @@ -43,9 +43,9 @@ apt-get install -y \

curl -OL https://apache.jfrog.io/artifactory/arrow/"$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb"

apt-get install -y ./apache-arrow-apt-source-latest-"$(lsb_release --codename --short).deb"
apt-get install -y -V ./apache-arrow-apt-source-latest-"$(lsb_release --codename --short).deb"
apt-get update -y
apt-get install -y libparquet-dev=9.0.0-1 libparquet-glib-dev=9.0.0-1 libarrow-dev=9.0.0-1 libarrow-glib-dev=9.0.0-1 gir1.2-parquet-1.0=9.0.0-1 gir1.2-arrow-1.0=9.0.0-1
apt-get install -y -V libparquet-dev=9.0.0-1 libparquet-glib-dev=9.0.0-1 libarrow-dev=9.0.0-1 libarrow-glib-dev=9.0.0-1 gir1.2-parquet-1.0=9.0.0-1 gir1.2-arrow-1.0=9.0.0-1

rm -f ./apache-arrow-apt-source-latest-"$(lsb_release --codename --short).deb"

Expand Down

0 comments on commit 43adea9

Please sign in to comment.