Merge branch 'develop' of https://github.com/sleuthkit/autopsy into develop

This commit is contained in:
raman-bt 2014-01-29 12:43:06 -05:00
commit 7d0c40b3a6
2 changed files with 4 additions and 1 deletions

View File

@ -33,7 +33,7 @@ import org.netbeans.swing.tabcontrol.TabDisplayerUI;
* *
* @author dfickling * @author dfickling
*/ */
class NoTabsTabDisplayerUI extends TabDisplayerUI { public class NoTabsTabDisplayerUI extends TabDisplayerUI {
/** Creates a new instance of NoTabsTabDisplayerUI */ /** Creates a new instance of NoTabsTabDisplayerUI */
public NoTabsTabDisplayerUI(TabDisplayer displayer) { public NoTabsTabDisplayerUI(TabDisplayer displayer) {

View File

@ -78,6 +78,9 @@ def gitPull(TskOrAutopsy, branch):
ccwd = os.path.join("..", "..", "..", "sleuthkit") ccwd = os.path.join("..", "..", "..", "sleuthkit")
else: else:
ccwd = os.path.join("..", "..") ccwd = os.path.join("..", "..")
print("Resetting " + TskOrAutopsy)
call = ["git", "reset", "--hard"]
subprocess.call(call, stdout=sys.stdout, cwd=ccwd)
print("Checking out " + branch) print("Checking out " + branch)
call = ["git", "checkout", branch] call = ["git", "checkout", branch]
subprocess.call(call, stdout=sys.stdout, cwd=ccwd) subprocess.call(call, stdout=sys.stdout, cwd=ccwd)