generate_emu_config and migrate_gse:

copy _DEFAULT folders for Linux too
This commit is contained in:
alex47exe 2024-10-14 15:23:21 +01:00
parent 3ccce93a74
commit 21c33b3a98
2 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,9 @@ pyinstaller "controller_config_generator/parse_controller_vdf.py" --distpath "$o
echo building parse_achievements_schema...
pyinstaller "stats_schema_achievement_gen/achievements_gen.py" --distpath "$out_dir" -y --clean --onedir --name "parse_achievements_schema" --noupx --console -i "NONE" --workpath "$build_temp_dir" --specpath "$build_temp_dir" || exit 1
#cp -a "post_build" "%out_dir%/generate_emu_config/post_build" # skip this, as it's only for Windows; will have to use a different 'post_build' folder for Linux
cp -a "_DEFAULT" "%out_dir%/generate_emu_config/_DEFAULT"
cp -f "steam_default_icon_locked.jpg" "$out_dir/generate_emu_config"
cp -f "steam_default_icon_unlocked.jpg" "$out_dir/generate_emu_config"
cp -f "README.md" "$out_dir/generate_emu_config"

View File

@ -18,6 +18,9 @@ source "./$venv/bin/activate"
echo building migrate_gse...
pyinstaller "main.py" --distpath "$out_dir" -y --clean --onedir --name "migrate_gse" --noupx --console -i "NONE" --workpath "$build_temp_dir" --specpath "$build_temp_dir" || exit 1
#cp -a "post_build" "%out_dir%/generate_emu_config/post_build" # skip this, as it's only for Windows; will have to use a different 'post_build' folder for Linux
cp -a "_DEFAULT" "%out_dir%/generate_emu_config/_DEFAULT"
cp -f "README.md" "$out_dir/migrate_gse"
echo;