Skip to content

Commit

Permalink
General repo cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tgerring committed Mar 30, 2015
1 parent e1c6c01 commit f23529c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
.ethtest
*/**/*tx_database*
*/**/*dapps*
Godeps/_workspace/pkg
Godeps/_workspace/bin

#*
.#*
Expand All @@ -21,7 +23,9 @@
.project
.settings

cmd/ethereum/ethereum
geth
mist
cmd/geth/geth
cmd/mist/mist
deploy/osx/Mist.app
deploy/osx/Mist\ Installer.dmg
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[submodule "ethereal/assets/samplecoin"]
path = ethereal/assets/samplecoin
url = [email protected]:obscuren/SampleCoin.git
[submodule "cmd/mist/assets/ext/ethereum.js"]
path = cmd/mist/assets/ext/ethereum.js
url = https://github.com/ethereum/ethereum.js
4 changes: 3 additions & 1 deletion .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ Joseph Goulden <[email protected]>

Nick Savers <[email protected]>

Maran Hidskes <[email protected]>
Maran Hidskes <[email protected]>

Taylor Gerring <[email protected]> <[email protected]>
4 changes: 2 additions & 2 deletions update-license.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var (
extensions = []string{".go", ".js", ".qml"}

// paths with any of these prefixes will be skipped
skipPrefixes = []string{"tests/files/", "cmd/mist/assets/ext/", "cmd/mist/assets/muted/"}
skipPrefixes = []string{"Godeps/", "tests/files/", "cmd/mist/assets/ext/", "cmd/mist/assets/muted/"}

// paths with this prefix are licensed as GPL. all other files are LGPL.
gplPrefixes = []string{"cmd/"}
Expand Down Expand Up @@ -190,7 +190,7 @@ func fileInfo(file string) (*info, error) {
break
}
}
cmd := exec.Command("git", "log", "--follow", "--find-copies", "--pretty=format:%aI | %aN <%aE>", "--", file)
cmd := exec.Command("git", "log", "--follow", "--find-copies", "--pretty=format:%ai | %aN <%aE>", "--", file)
err := doLines(cmd, func(line string) {
sep := strings.IndexByte(line, '|')
year, name := line[:4], line[sep+2:]
Expand Down

0 comments on commit f23529c

Please sign in to comment.