mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 09:35:36 -05:00
17 lines
219 B
Bash
Executable File
17 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
# Install libraries and tools
|
|
apt-get update
|
|
apt-get install -y \
|
|
curl \
|
|
make \
|
|
gcc \
|
|
g++ \
|
|
python2.7 \
|
|
libx11-dev \
|
|
libxkbfile-dev \
|
|
libsecret-1-dev \
|
|
xz-utils
|
|
rm -rf /var/lib/apt/lists/*
|