in reply to GitHub and CPAN

How about

chdir $module_repo_dir; system("git push github") == 0 or warn "Couldn't send to GitHub: $! / $?";

Also see Git::Wrapper.

Replies are listed 'Best First'.
Re^2: GitHub and CPAN
by Anonymous Monk on Aug 18, 2014 at 21:22 UTC
    Okay, thanks. I was wondering if there were a way to do this without having git locally installed but I guess that it wouldn't make sense without git.