mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-11 13:45:25 +00:00
![Alexandre Detiste](/assets/img/avatar_default.png)
some in the variable names, some in the comments; no change for the strings that interract with original games assets
23 lines
393 B
Bash
Executable File
23 lines
393 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Create the directory structure
|
|
# Avoided bash shortcuts / file-separators in interest of portability
|
|
|
|
if [ -e playground3d ]; then
|
|
echo "Game-data already present as playground3d/"
|
|
echo "To regenerate, remove and rerun"
|
|
exit 0
|
|
fi
|
|
|
|
mkdir playground3d
|
|
|
|
cd playground3d
|
|
|
|
# For game detection
|
|
echo "ScummVM rocks!" > PLAYGROUND3D
|
|
|
|
# back to the top
|
|
cd ..
|
|
|
|
echo "Game data created"
|