Fix data path

This commit is contained in:
Jeremy Soller 2019-08-08 17:09:26 -06:00
parent 66353b8012
commit 4bc9b0afbb
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -35,11 +35,11 @@ function recipe_clean {
function recipe_stage {
dest="$(realpath $1)"
mkdir -p "${dest}/games"
cp -rv data "${dest}/games/neverball"
mkdir -p "${dest}/games/neverball"
for bin in neverball neverputt
do
"${STRIP}" -v "$bin" -o "${dest}/games/neverball/$bin"
done
cp -rv data "${dest}/games/neverball"
skip=1
}