Created
June 2, 2020 19:15
-
-
Save d235j/b428f97c7cec4cdf9fae98862ab3efce to your computer and use it in GitHub Desktop.
This file contains 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 HxCFloppyEmulator_cmdline 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