Skip to content
This repository was archived by the owner on Aug 14, 2020. It is now read-only.

Commit d277c9b

Browse files
committed
*: update to new home
1 parent 8ec5a71 commit d277c9b

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Then it generates a very basic image manifest (using mostly default values, conf
2020

2121
## TODO
2222

23-
Lots, check out the top of [goaci.go](goaci.go)
23+
Lots, check out https://github.com/appc/goaci/issues

build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -eu
22

3-
ORG_PATH="github.com/jonboulle"
3+
ORG_PATH="github.com/appc"
44
REPO_PATH="${ORG_PATH}/goaci"
55

66
if [ ! -h gopath/src/${REPO_PATH} ]; then

goaci.go

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
package main
22

3-
// TODO(jonboulle): at a bare minimum, allow user to specify arguments to exec
4-
// TODO(jonboulle): allow user to add assets to the ACI
5-
// TODO(jonboulle): support user-specified GOPATHs/local packages. Right now we pull down a fresh copy of the specified package every time. This is better in terms of isolation and reproducibility, but inconvenient.
6-
// TODO(jonboulle): add git SHA as a label in the image manifest
7-
// TODO(jonboulle): support passing user-supplied arguments to `go get`? this might be tricky as we need to set a lot ourselves, and what if they conflict?
8-
// TODO(jonboulle): support multiple executables?
9-
103
import (
114
"archive/tar"
125
"bytes"
@@ -77,6 +70,8 @@ func main() {
7770
"-a",
7871
"-tags", "netgo",
7972
"-ldflags", "'-w'",
73+
// 1.4
74+
"-installsuffix", "cgo",
8075
}
8176

8277
// Extract the package name (which is the last arg).

0 commit comments

Comments
 (0)