Files
UnrealEngine/Engine/Extras/ushell/channels/flow/nt/boot.sh
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

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