diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2021-12-24 16:08:45 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2021-12-24 16:08:45 +0100 |
commit | 004d436eb6dbec2e6ce8113fc237382b62ea03a1 (patch) | |
tree | 6aa013ca1227d39c9cc821210cb8660dd35f5f44 | |
parent | new address (diff) | |
download | joe-scripts-004d436eb6dbec2e6ce8113fc237382b62ea03a1.tar.gz joe-scripts-004d436eb6dbec2e6ce8113fc237382b62ea03a1.tar.bz2 joe-scripts-004d436eb6dbec2e6ce8113fc237382b62ea03a1.tar.xz joe-scripts-004d436eb6dbec2e6ce8113fc237382b62ea03a1.tar.zst joe-scripts-004d436eb6dbec2e6ce8113fc237382b62ea03a1.zip |
URL update for repos
-rwxr-xr-x | src/gitjoe/newrepo.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gitjoe/newrepo.pl b/src/gitjoe/newrepo.pl index 109b69e..308dd36 100755 --- a/src/gitjoe/newrepo.pl +++ b/src/gitjoe/newrepo.pl @@ -51,7 +51,7 @@ sub main close($owner_fh); open(my $url_fh, '>:encoding(UTF-8)', $home_dir . $repo . 'url'); substr($repo, -1) = ""; - print $url_fh 'git://jozanleclerc.xyz/' . $usr . '/' . $repo; + print $url_fh 'git://jozanofastora.xyz/' . $usr . '/' . $repo; close($url_fh); $repo = $repo . '/'; open(my $desc_fh, '>:encoding(UTF-8)', $home_dir . $repo . 'description'); @@ -65,8 +65,8 @@ sub main chown $uid, $gid, $home_dir . $repo . 'description'; substr($repo, -1) = ""; print "Created git repository " . colored($repo, 'bold green') . " for user " . colored($usr, 'bold') . ".\n"; - print "Remote url: " . colored($usr . '@jozanleclerc.xyz:' . $repo, 'bold green') . "\n" - . "Public clone url: " . colored('git://jozanleclerc.xyz/' . $usr . '/' . $repo, 'bold green') . "\n"; + print "Remote url: " . colored($usr . '@jozanofastora.xyz:' . $repo, 'bold green') . "\n" + . "Public clone url: " . colored('git://jozanofastora.xyz/' . $usr . '/' . $repo, 'bold green') . "\n"; exit; } |