mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 11:14:11 +00:00
multiple cmds for -build and -fetch
This commit is contained in:
parent
e556aa6432
commit
62647b60ab
@ -91,9 +91,12 @@ echo "STRIP = $STRIP"
|
||||
|
||||
mkdir -p "$RARCH_DIST_DIR"
|
||||
|
||||
if [ $1 ]; then
|
||||
if [ -n "${1}" ]; then
|
||||
NOBUILD_SUMMARY=1
|
||||
$1
|
||||
while [ -n "${1}" ]; do
|
||||
"${1}"
|
||||
shift
|
||||
done
|
||||
else
|
||||
build_libretro_2048
|
||||
build_libretro_4do
|
||||
|
@ -362,8 +362,11 @@ fetch_libretro_emux() {
|
||||
fetch_git "$REPO_BASE/libretro/emux.git" "libretro-emux" "libretro/Emux"
|
||||
}
|
||||
|
||||
if [ ${1} ]; then
|
||||
${1}
|
||||
if [ -n "${1}" ]; then
|
||||
while [ -n "${1}" ]; do
|
||||
"${1}"
|
||||
shift
|
||||
done
|
||||
else
|
||||
fetch_retroarch
|
||||
fetch_tools
|
||||
|
Loading…
Reference in New Issue
Block a user