-
Notifications
You must be signed in to change notification settings - Fork 507
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fabric itself no longer has a dependency on the legacy Base Image and it will eventually be marked for deprecation. This change removes the SDK's dependency on the Fabric Base Image Signed-off-by: Brett Logan <[email protected]> Change-Id: Ie6aeb9b936f84d9e553c57566ef254a6c50cebec
- Loading branch information
Brett Logan
authored and
Brett Logan
committed
May 29, 2019
1 parent
4def0f9
commit 94a6ed7
Showing
6 changed files
with
49 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# | ||
# Copyright IBM Corp, SecureKey Technologies Inc. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
#!/bin/bash | ||
|
||
# ---------------------------------------------------------------- | ||
# Install Golang | ||
# ---------------------------------------------------------------- | ||
|
||
apt-get update | ||
apt-get install -y -qq wget | ||
mkdir -p $GOPATH | ||
ARCH=`uname -m | sed 's|i686|386|' | sed 's|x86_64|amd64|'` | ||
|
||
cd /tmp | ||
wget --quiet --no-check-certificate https://storage.googleapis.com/golang/go${GOVER}.linux-${ARCH}.tar.gz | ||
tar -xvf go${GOVER}.linux-${ARCH}.tar.gz | ||
mv go $GOROOT | ||
chmod 775 $GOROOT |