mirror of
https://github.com/telegramdesktop/tdesktop
synced 2024-12-11 00:44:49 +00:00
dbd4eaed48
Signed-off-by: MohammadReza Espargham <reza.espargham@owasp.org> (github: rezasp)
16 lines
261 B
Bash
Executable File
16 lines
261 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
FullExecPath=$PWD
|
|
pushd `dirname $0` > /dev/null
|
|
FullScriptPath=`pwd`
|
|
popd > /dev/null
|
|
|
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
|
set $line
|
|
eval $1="$2"
|
|
done < "$FullScriptPath/../build/version"
|
|
|
|
echo $AppVersionStr
|
|
exit
|
|
|