[Bps-public-commit] RT-Extension-rt_cpan_org branch, rt4, updated. 5b0a33ce62dc50c8a846ce48292dc7938c0733bd

Thomas Sibley trs at bestpractical.com
Wed Apr 3 16:36:46 EDT 2013


The branch, rt4 has been updated
       via  5b0a33ce62dc50c8a846ce48292dc7938c0733bd (commit)
      from  604c516348061c51edb362fb4d125cc1370d0d0f (commit)

Summary of changes:
 bin/pull-live | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

- Log -----------------------------------------------------------------
commit 5b0a33ce62dc50c8a846ce48292dc7938c0733bd
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Wed Apr 3 13:36:32 2013 -0700

    sudo is no longer necessary

diff --git a/bin/pull-live b/bin/pull-live
index 77c4f7a..a1232e6 100755
--- a/bin/pull-live
+++ b/bin/pull-live
@@ -89,7 +89,7 @@ unless ( skip 'RT' ) {
     my $url = 'http://download.bestpractical.com/pub/rt/release/rt.tar.gz';
     run("curl $url | tar xzp")
         or die "Couldn't download and extract RT ($url)";
-    run("cd rt-4.* && ./configure $rt_opts && sudo make install")
+    run("cd rt-4.* && ./configure $rt_opts && make install")
         or die "Couldn't upgrade RT";
 }
 
@@ -110,12 +110,12 @@ foreach my $module (@UPDATE) {
     }
 
     print "Installing $module...\n";
-    run("cd $module && $perl ./Makefile.PL && make && sudo make install")
+    run("cd $module && $perl ./Makefile.PL && make && make install")
         or die "Couldn't install module";
 
     for my $patch (<$module/patches/*.patch>) {
         print "Patching RT with $patch...\n";
-        run("sudo patch --forward -p1 -d $rthome < $patch",
+        run("patch --forward -p1 -d $rthome < $patch",
             ignore_exit => 1,
             fail_on     => qr/FAILED/)
                 or warn "Couldn't apply patch $patch.  Please apply it manually.\n";

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list