summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/jitterbug/Builder.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/jitterbug/Builder.pm b/lib/jitterbug/Builder.pm
index 14a7bc4..dfb3f99 100644
--- a/lib/jitterbug/Builder.pm
+++ b/lib/jitterbug/Builder.pm
@@ -116,8 +116,8 @@ sub run_task {
# TODO: Error Checking
debug("Cleaning git repo");
system("git clean -dfx");
- debug("Rebasing new commits into $repo");
- system("git pull --rebase");
+ debug("Fetching new commits into $repo");
+ system("git fetch");
chdir $pwd;
$r = Git::Repository->new( work_tree => $build_dir );
}