Project

General

Profile

Update within the same version using svn » History » Version 1

Anchi Cheng, 05/11/2012 11:20 PM

1 1 Anchi Cheng
h1. Update within the same version using svn
2
3
From time to time, we discover critical bugs that users are encouraged to update within the branch (x.x version) that they have checked out.  Here is how to update when these situation arrives.
4
5
h2. You still have the svn check out of the whole myami superpackage saved on the same computer:
6
7
# Go to the myami directory
8
# Confirm that this checkout working sandbox is the branch you want:
9
**Linux
10
<pre>
11
svn info
12
</pre>
13
# update the checkout
14
**Linux
15
<pre>
16
svn update
17
</pre>
18
You should see what has been changed by the update
19
# for the each of the python subpackage that changes are made, redo the python installation with the same command you used originally.  For example, if changes were made in leginon subpackage, you would install leginon by
20
**Linux
21
<pre>
22
cd /_your_myami_svn_checkout_/leginon
23
python setup.py install
24
</pre>
25
**Windows from command line
26
<pre>
27
cd \_your_myami_svn_checkout_\leginon
28
C:\Python25\python.exe setup.py install
29
</pre>