Skip to content

Commit 7061124

Browse files
committed
scripts/release: Fix path when GPG signing
The DEST var is relative to the repo root where the script is run from so does not need .. in front. The git command above is relative to the component subdir so does need the .. Signed-off-by: Jason Zaman <jason@perfinion.com>
1 parent e0f25a1 commit 7061124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ for COMPONENT in "${DIRS[@]}"; do
4949
git tag "$TAG" > /dev/null
5050
fi
5151
git -C "$DIR" archive -o "../$DEST/$TAG.tar.gz" --prefix="$TAG/" "$TAG"
52-
gpg -b -a "../$DEST/$TAG.tar.gz"
52+
gpg -b -a "$DEST/$TAG.tar.gz"
5353
done
5454

5555
git archive -o "$DEST/selinux-${RELEASE_TAG}.tar.gz" --prefix="selinux-${RELEASE_TAG}/" "${RELEASE_TAG}"

0 commit comments

Comments
 (0)