Pass WRITERIGHTS=1 to libretro-fetch.sh to get repo copies that

can be used for committers
This commit is contained in:
twinaphex 2013-04-30 16:23:36 +02:00
parent e2c10df2c8
commit 1b785ad8d7

View File

@ -1,6 +1,5 @@
#!/bin/sh
# Keep three copies so we don't have to rebuild stuff all the time.
fetch_project_bsnes()
{
@ -49,7 +48,11 @@ fetch_project()
echo "=== Fetched ==="
}
REPO_BASE="git://github.com"
if [ -z $WRITERIGHTS ]; then
REPO_BASE="https://github.com"
else
REPO_BASE="git://github.com"
fi
fetch_project_bsnes "git://gitorious.org/bsnes/bsnes.git --branch libretro" "libretro-bsnes" "libretro/bSNES"
fetch_project "$REPO_BASE/snes9xgit/snes9x.git" "libretro-s9x" "libretro/SNES9x"