Skip to content

Commit

Permalink
fix the problem in windows caused by symlinks (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyawk authored Nov 4, 2024
1 parent 8020819 commit 09ad021
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bazelignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.cache
.cache/bazel
examples
5 changes: 2 additions & 3 deletions .github/workflows/release_prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ TAG="${GITHUB_REF_NAME}"
PREFIX="rules_build_error-${TAG}"
ARCHIVE="rules_build_error-${TAG}.tar.gz"

git archive --format=tar "--prefix=${PREFIX}/" "${TAG}" | \
gzip \
> "${ARCHIVE}"
git ls-files -z | \
tar --transform "s|^|${PREFIX}/|" --null -czhf "${ARCHIVE}" --files-from=-

# StdOut of this script is used for release description
cat << EOF
Expand Down

0 comments on commit 09ad021

Please sign in to comment.