Skip to content

Commit 26b6e42

Browse files
committed
Revised T2 Downloads
1 parent b971d85 commit 26b6e42

2 files changed

Lines changed: 23 additions & 3 deletions

File tree

08-linux/batch-exec-t2sde.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#
44
# --- BATCH-EXEC-T2SDE.C ---
55
#
6-
# This downloads T2 SDE Source Code and Handbook
7-
# using Subversion.
6+
# This downloads T2 SDE Source Code and Handbook using Subversion.
7+
# Please change the version numbers to suit your needs.
88
#
99
#
1010
# To run this program:
@@ -18,7 +18,7 @@
1818

1919
int main(int argc, char *argv[])
2020
{
21-
system("svn co https://svn.exactcode.de/t2/tags/24.8 02-t2sde-24.8");
21+
system("svn co https://svn.exactcode.de/t2/tags/25.4 02-t2sde-25.4");
2222
system("svn co https://svn.exactcode.de/t2/trunk 02-t2sde-trunk");
2323
system("svn co https://svn.exactcode.de/t2-handbook/tags/0.1.7 02-t2sde-handbook-0.1.7");
2424
system("svn co https://svn.exactcode.de/t2-handbook/trunk 02-t2sde-handbook-trunk");

08-linux/exec-t2.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/bin/sh
2+
#
3+
# --- EXEC-T2.SH ---
4+
#
5+
# This downloads T2 SDE Source Code and Handbook using Subversion.
6+
#
7+
# You will need to select the version numbers for the T2 Source,
8+
# and T2 Handbook.
9+
#
10+
#
11+
# To run this program:
12+
#
13+
# ./exec-t2.sh <version> <handbook-version>
14+
#
15+
16+
svn co https://svn.exactcode.de/t2/tags/$1 02-t2sde-$1
17+
svn co https://svn.exactcode.de/t2/trunk 02-t2sde-trunk
18+
svn co https://svn.exactcode.de/t2-handbook/tags/$2 02-t2sde-handbook-$2
19+
svn co https://svn.exactcode.de/t2-handbook/trunk 02-t2sde-handbook-trunk
20+

0 commit comments

Comments
 (0)