Skip to content

Commit 78b110d

Browse files
committed
Use /usr/bin/tar instead of gnutar (which is removed on 10.9)
We were using gnutar to avoid the extended header keywords that bsdtar add to the archive (for non-ASCII file names) as those will cause older versions of gnutar (like the one included with 10.8 and earlier) to give warnings/errors when extracting the archive. Issue #1180
1 parent c53b0cf commit 78b110d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/create_default_bundles_tbz

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ bl="$builddir/Applications/bl/bl"
1717
{ [ -x "$bl" ] || ninja "$bl"; } && \
1818
mkdir -p "$BUNDLES_DST/Managed" && \
1919
"$bl" -C "$BUNDLES_DST/Managed" install Apache Bundle\ Development Bundle\ Support C CSS Diff Git HTML Hyperlink\ Helper JavaScript JSON Mail Make Markdown Math Mercurial Objective-C PHP Property\ List Python Ruby SCM Shell\ Script Source SQL Subversion Text TextMate Themes TODO XML && \
20-
gnutar -cf "$TBZ_DST~" "$BZIP2_FLAG" -C "$BUNDLES_DST" "Managed" && \
20+
/usr/bin/tar -cf "$TBZ_DST~" "$BZIP2_FLAG" -C "$BUNDLES_DST" "Managed" && \
2121
mv "$TBZ_DST~" "$TBZ_DST"

0 commit comments

Comments
 (0)