mirror of
https://github.com/fluencelabs/node-distro
synced 2024-12-04 15:20:17 +00:00
af31412d6f
* Prepare for multiarch * Fix * Fix * Fix * Move some code to scripts * Cleanup * Run chmod * Typo * Fix * Fixes * Typo * Install npm * Fix * Cleanup * Fix * Fix? * Updates
15 lines
341 B
Bash
Executable File
15 lines
341 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
case "$TARGETPLATFORM" in
|
|
'linux/amd64')
|
|
URL="http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb"
|
|
;;
|
|
'linux/arm64')
|
|
URL="http://launchpadlibrarian.net/668086110/libssl1.1_1.1.1-1ubuntu2.1~18.04.23_arm64.deb"
|
|
;;
|
|
esac
|
|
|
|
wget $URL -O libssl.deb
|
|
dpkg -i libssl.deb
|
|
rm libssl.deb
|