mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
5c9d739b32
Automates creating a source tarball with the right folder name inside
12 lines
329 B
Bash
Executable File
12 lines
329 B
Bash
Executable File
#!/bin/bash -eux
|
|
|
|
# Get git version, something like "v1.2.3"
|
|
GITVERSION=$(git describe --tags --dirty)
|
|
# Drop leading "v" to get just "1.2.3"
|
|
VERSION=${GITVERSION#v}
|
|
# Folder name inside the tarball should be "encfs-1.2.3"
|
|
PREFIX="encfs-$VERSION"
|
|
|
|
# Actually create archive
|
|
git archive --prefix "$PREFIX/" -o $PREFIX.tar.gz HEAD
|