mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-11 11:47:09 +02:00
10 lines
146 B
Bash
Executable file
10 lines
146 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
pushd `dirname $0` > /dev/null
|
|
FullScriptPath=`pwd`
|
|
popd > /dev/null
|
|
|
|
python3 $FullScriptPath/configure.py "$@"
|
|
|
|
exit
|