signed-commit remote shell (see also https://github.com/dyne/scorsh)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
352 B
23 lines
352 B
BUILD=go build
|
|
|
|
SERVER_SOURCES=scorshd.go \
|
|
types.go \
|
|
config.go \
|
|
spooler.go \
|
|
commits.go \
|
|
workers.go \
|
|
exec.go
|
|
|
|
all: scorshd
|
|
|
|
deps:
|
|
go get 'github.com/fsnotify/fsnotify'
|
|
go get 'github.com/dyne/git2go.v26'
|
|
go get 'gopkg.in/yaml.v2'
|
|
go get 'golang.org/x/crypto/openpgp'
|
|
|
|
scorshd: $(SERVER_SOURCES)
|
|
$(BUILD) $(SERVER_SOURCES)
|
|
|
|
clean:
|
|
rm scorshd
|
|
|