21 lines
273 B
Bash
Raw Normal View History

2025-03-17 17:14:46 +00:00
#!/bin/sh
ver=1.3.13
#
# CII
#
rm en16931-cii-$ver.zip
cd cii
zip -9 -r ../en16931-cii-$ver.zip schematron/* xslt/* examples/*
cd ..
#
# UBL
#
rm en16931-ubl-$ver.zip
cd ubl
zip -9 -r ../en16931-ubl-$ver.zip schematron/* xslt/* examples/*
cd ..
echo "Successfully done"