Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 12a2783

Browse files
fixed bug: wrong version of lang file was being aliased. unminified version instead of minified
1 parent b193e34 commit 12a2783

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ distrib.tstamp: src/prettify.js src/run_prettify.js src/*.js src/*.css
8383
lang-aliases : lang-aliases.tstamp
8484
lang-aliases.tstamp : distrib.tstamp
8585
@tools/lang-handler-aliases.sh \
86-
distrib/sources/google-code-prettify/src \
86+
distrib/google-code-prettify \
8787
| perl -ne 'system("cp $$1 $$2") if m/^(\S+) (\S+)$$/ && ! -e $$2' \
8888
&& touch lang-aliases.tstamp
8989

tools/cut-release.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,8 @@ fi
123123
# Make the distribution
124124
function build() {
125125
pushd "$VERSION_BASE/trunk" > /dev/null
126-
make clean \
127-
&& make distrib distrib/prettify.tar.bz2 distrib/prettify-small.tar.bz2 \
128-
&& make lang-aliases
126+
make distrib distrib/prettify.tar.bz2 distrib/prettify-small.tar.bz2 \
127+
lang-aliases
129128
local status=$?
130129
popd > /dev/null
131130
(($status))

0 commit comments

Comments
 (0)