mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
14 lines
399 B
Bash
Executable File
14 lines
399 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo Creates a tar.xz file for release.
|
|
echo Note the binary and translation files need to be in place and compiled, which is both done by the .deb creator script.
|
|
echo
|
|
|
|
echo -n Enter full version number to use \(e.g. "12.10.1.133"\):
|
|
read fullVer
|
|
tarFilename="HeidiSQL_$fullVer.tar.xz"
|
|
cd out
|
|
tar -cvJf $tarFilename heidisql functions*.ini locale/heidisql.*.mo
|
|
mv $tarFilename ../
|
|
cd ..
|