mirror of
https://github.com/libretro/libretro-super
synced 2024-12-28 15:19:36 +00:00
15 lines
359 B
Bash
Executable File
15 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
|
|
RECIPE=recipes/linux/cores-linux-x64-generic
|
|
|
|
cd ~/libretro-super
|
|
|
|
if [ "${TRAVIS_BUILD_DIR}" ]; then
|
|
CORE_DIRNAME=`grep ${CORE} ${RECIPE} | head -1 | awk '{print $2}'`
|
|
rm -fr ${CORE_DIRNAME}
|
|
mv ${TRAVIS_BUILD_DIR} ${CORE_DIRNAME}
|
|
fi
|
|
|
|
# only build the one core specified in $CORE
|
|
SINGLE_CORE=${CORE} ./libretro-buildbot-recipe.sh ${RECIPE}
|