19 lines
415 B
Bash
Executable File
19 lines
415 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
self_dir=$(cygpath --windows --absolute $(dirname $0))
|
|
working_dir=$LOCALAPPDATA\\ushell\\.working
|
|
|
|
# Provision Python
|
|
cmd.exe /d/c "$self_dir/provision.bat" "$working_dir"
|
|
if [ ! $? ]; then
|
|
exit 1
|
|
fi
|
|
|
|
"$working_dir/python/current/flow_python.exe" -Esu "$self_dir/../core/system/boot.py" $@
|
|
if [ ! $? ]; then
|
|
echo boot.py failed
|
|
exit 1
|
|
fi
|