Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
1d8a4277
Commit
1d8a4277
authored
Mar 02, 2015
by
zelig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove obsolete install script
parent
deb2e502
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
53 deletions
+0
-53
install.sh
install.sh
+0
-53
No files found.
install.sh
deleted
100755 → 0
View file @
deb2e502
#!/bin/sh
if
[
"
$1
"
==
""
]
;
then
echo
"Usage
$0
executable branch"
echo
"executable ethereum | mist"
echo
"branch develop | master"
exit
fi
exe
=
$1
path
=
$exe
branch
=
$2
if
[
"
$branch
"
==
"develop"
]
;
then
path
=
"cmd/
$exe
"
fi
# Test if go is installed
command
-v
go
>
/dev/null 2>&1
||
{
echo
>
&2
"Unable to find 'go'. This script requires go."
;
exit
1
;
}
# Test if $GOPATH is set
if
[
"
$GOPATH
"
==
""
]
;
then
echo
"
\$
GOPATH not set"
exit
fi
echo
"changing branch to
$branch
"
cd
$GOPATH
/src/github.com/ethereum/go-ethereum
git checkout
$branch
# installing package dependencies doesn't work for develop
# branch as go get always pulls from master head
# so build will continue to fail, but this installs locally
# for people who git clone since go install will manage deps
#echo "go get -u -d github.com/ethereum/go-ethereum/$path"
#go get -v -u -d github.com/ethereum/go-ethereum/$path
#if [ $? != 0 ]; then
# echo "go get failed"
# exit
#fi
cd
$GOPATH
/src/github.com/ethereum/go-ethereum/
$path
if
[
"
$exe
"
==
"mist"
]
;
then
echo
"Building Mist GUI. Assuming Qt is installed. If this step"
echo
"fails; please refer to: https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum(Go)"
else
echo
"Building ethereum CLI."
fi
go
install
echo
"done. Please run
$exe
:-)"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment