brew audit

pull/15/head
Miguel Mota 6 years ago
parent 643ad3eed8
commit 4c88b56dd3

6
.gitignore vendored

@ -19,5 +19,11 @@ prime
snap
stage
*.snap
# bfg
bfg.jar
*bfg-report*
*bfg-report
# builds
build

@ -49,3 +49,12 @@ brew/build: brew/remove
brew/audit:
brew audit --strict cointop.rb
git/rm/large:
java -jar bfg.jar --strip-blobs-bigger-than 200K .
git/repack:
git reflog expire --expire=now --all
git fsck --full --unreachable
git repack -A -d
git gc --aggressive --prune=now

Binary file not shown.

@ -9,12 +9,11 @@ class Cointop < Formula
def install
ENV["GOPATH"] = buildpath
path = buildpath/"src/github.com/miguelmota"
#system "go", "get", "-u", "github.com/miguelmota/cointop"
mkdir "#{buildpath}/src/github.com/miguelmota/cointop"
path = buildpath/"src/github.com/miguelmota/cointop"
cd path do
system "git", "clone", "https://github.com/miguelmota/cointop.git"
system "mv", "bin/macos/cointop", "#{bin}/cointop"
#system "go", "build", "-o", "#{bin}/cointop"
system "git", "clone", "https://github.com/miguelmota/cointop.git", "."
system "go", "build", "-o", "#{bin}/cointop"
end
end

Loading…
Cancel
Save