Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
d6c38861
Commit
d6c38861
authored
Nov 10, 2009
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test for invalid $GOBIN setting before trying to build
R=r CC=golang-dev
https://golang.org/cl/153049
parent
e23f75b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/make.bash
src/make.bash
+7
-0
No files found.
src/make.bash
View file @
d6c38861
...
@@ -13,6 +13,13 @@ then
...
@@ -13,6 +13,13 @@ then
exit
1
exit
1
fi
fi
if
!
test
-d
$GOBIN
then
echo
'$GOBIN is not a directory or does not exist'
1>&2
echo
'create it or set $GOBIN differently'
1>&2
exit
1
fi
bash clean.bash
bash clean.bash
rm
-f
$GOBIN
/quietgcc
rm
-f
$GOBIN
/quietgcc
...
...
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