Created
June 2, 2020 19:05
-
-
Save d235j/b8babde603387b010d890d7666bd057e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
ROOT="http://svn.code.sf.net/p/hxcfloppyemu/code/HxCFloppyEmulator/" | |
REPOS_TRUNK="HxCFloppyEmulator_software libhxcadaptor libhxcfe libusbhxcfe" | |
REPOS="build" | |
for i in $REPOS_TRUNK; do | |
echo "--- $i ---" | |
if [ -d "$ROOT/$i/trunk" ]; then | |
svn up "$i/trunk" | |
else | |
svn checkout "$ROOT/$i/trunk" "$i/trunk" | |
fi | |
done | |
for i in $REPOS; do | |
echo "--- $i ---" | |
if [ -d "$ROOT/$i" ]; then | |
svn up "$i" | |
else | |
svn checkout "$ROOT/$i" "$i" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment