mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-08-27 21:07:09 +00:00
11 lines
146 B
Bash
Executable File
11 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
|