Skip to content

Commit

Permalink
Fixing env variable naming convention and removing wget dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
f-galland committed Jan 17, 2024
1 parent 599df4b commit ca225a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions scripts/assemble.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@

set -ex

### The $test variable determines whether we include a minimalistic
### The $TEST variable determines whether we include a minimalistic
### or the full set of OpenSearch plugins

test=${test:-false}
TEST=${TEST:-false}

if ( $test )
if ( $TEST )
then
plugins=(
"performance-analyzer"
Expand Down
2 changes: 1 addition & 1 deletion scripts/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Provision script for assembly of DEB packages

# Install necessary packages
apt-get update -y && apt-get upgrade -y && apt-get install -y curl wget build-essential &&
apt-get update -y && apt-get upgrade -y && apt-get install -y curl build-essential &&
apt-get install -y debmake debhelper-compat &&
apt-get install -y libxrender1 libxtst6 libasound2 libxi6 libgconf-2-4 &&
apt-get install -y libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libatspi2.0-dev libxcomposite-dev libxdamage1 libxfixes3 libxfixes-dev libxrandr2 libgbm-dev libxkbcommon-x11-0 libpangocairo-1.0-0 libcairo2 libcairo2-dev libnss3 libnspr4 libnspr4-dev freeglut3 &&
Expand Down

0 comments on commit ca225a8

Please sign in to comment.