mirror of
https://github.com/telegramdesktop/tdesktop
synced 2024-12-30 18:42:13 +00:00
11 lines
145 B
Bash
Executable File
11 lines
145 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
pushd `dirname $0` > /dev/null
|
|
FullScriptPath=`pwd`
|
|
popd > /dev/null
|
|
|
|
python $FullScriptPath/configure.py "$@"
|
|
|
|
exit
|