8 lines
100 B
Bash
Executable File
8 lines
100 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
tag=$(git describe --tags)
|
|
go build
|
|
tar czvf gocryptfs_$tag.tar.gz gocryptfs
|