Merge pull request #530 from prometheus/fix-mac-build
Fix embedded files generation on OS X.
This commit is contained in:
commit
4d135b8b36
|
@ -21,8 +21,12 @@ do
|
||||||
find . -type f \! -name \*.map \! -name bootstrap.js \! -name bootstrap-theme.css \! -name bootstrap.css | while read file
|
find . -type f \! -name \*.map \! -name bootstrap.js \! -name bootstrap-theme.css \! -name bootstrap.css | while read file
|
||||||
do
|
do
|
||||||
name=$(echo "${file}"|sed 's|\.\/||')
|
name=$(echo "${file}"|sed 's|\.\/||')
|
||||||
echo -n "\"$name\": []byte(\""
|
# Using printf here instead of "echo -n" because the latter doesn't work on Mac OS X:
|
||||||
gzip -9 -c "${file}" | xxd -p | tr -d '\n' | sed 's/\(..\)/\\x\1/g'
|
# http://hints.macworld.com/article.php?story=20071106192548833.
|
||||||
|
printf "\"$name\": []byte(\""
|
||||||
|
# The second newline deletion at the end is required for Mac OS X as well,
|
||||||
|
# as sed outputs a trailing newline there.
|
||||||
|
gzip -9 -c "${file}" | xxd -p | tr -d '\n' | sed 's/\(..\)/\\x\1/g' | tr -d '\n'
|
||||||
echo "\"),"
|
echo "\"),"
|
||||||
echo
|
echo
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue