mirror of
https://github.com/libretro/libretro-super
synced 2024-12-28 15:19:36 +00:00
11 lines
247 B
Bash
Executable File
11 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
|
|
RECIPE=recipes/linux/cores-linux-x64-generic
|
|
|
|
cd ~/libretro-super
|
|
|
|
# only build the one core specified in $CORE
|
|
egrep "^$CORE " ${RECIPE} | head -1 >${RECIPE}.new && mv ${RECIPE}.new ${RECIPE}
|
|
|
|
./libretro-buildbot-recipe.sh ${RECIPE}
|