mirror of
https://github.com/telegramdesktop/tdesktop
synced 2024-12-29 01:52:48 +00:00
65b2db2160
We ask the developer to obtain his own api credentials, because the bundled 'api_id' / 'api_hash' are strictly limited by the server. The old credentials still could be used for test purposes, but the developer will need to explicitly opt-in to use them.
11 lines
157 B
Bash
Executable File
11 lines
157 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
pushd `dirname $0` > /dev/null
|
|
FullScriptPath=`pwd`
|
|
popd > /dev/null
|
|
|
|
python $FullScriptPath/generate.py $1 $2 $3 $4 $5 $6
|
|
|
|
exit
|