diff options
Diffstat (limited to 'build/build.sh')
-rwxr-xr-x | build/build.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/build/build.sh b/build/build.sh index c14b852ae..c46032cdd 100755 --- a/build/build.sh +++ b/build/build.sh @@ -68,11 +68,9 @@ for lang in $languages; do [ -n "$USES_PO" ] && rm -r ../$lang || true done -if [ "$manual_release" != "sarge" ] ; then - PRESEED="../en/appendix/preseed.xml" - if [ -f $PRESEED ] && [ -f preseed.pl ] ; then - ./preseed.pl -r $manual_release $PRESEED >$destination/example-preseed.txt - fi +PRESEED="../en/appendix/preseed.xml" +if [ -f $PRESEED ] && [ -f preseed.pl ] ; then + ./preseed.pl -r $manual_release $PRESEED >$destination/example-preseed.txt fi clear_po |