scummvm/dists/engine-data/create-playground3d-data.sh
Alexandre Detiste 6044504762 JANITORIAL: typos
some in the variable names, some in the comments;
no change for the strings that interract with original games assets
2021-10-31 20:46:31 +01:00

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"