mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
6a875b24c3
Top level "SPECIFIC-ULN/" was inappropriate, put the files to create RPMs for ULN into "packaging/rpm-uln/".
15 lines
215 B
Bash
Executable file
15 lines
215 B
Bash
Executable file
#!/bin/sh
|
|
|
|
VERSION=$1
|
|
|
|
rm -rf mysql-$VERSION
|
|
|
|
tar xfz mysql-$VERSION.tar.gz || exit 1
|
|
|
|
rm mysql-$VERSION/Docs/mysql.info
|
|
|
|
tar cfz mysql-$VERSION-nodocs.tar.gz mysql-$VERSION || exit 1
|
|
|
|
rm -rf mysql-$VERSION
|
|
|
|
exit 0
|