diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 19:38:15 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 19:38:15 +0200 |
commit | e4d32e31a39e4b31501ad553052d7aab8f3acf9f (patch) | |
tree | 07f6629df011088ea0f04eb04f35679a666c55d2 /update-gitjoe.pl | |
parent | Better newrepo script, with owner and url files support (diff) | |
download | joe-scripts-e4d32e31a39e4b31501ad553052d7aab8f3acf9f.tar.gz joe-scripts-e4d32e31a39e4b31501ad553052d7aab8f3acf9f.tar.bz2 joe-scripts-e4d32e31a39e4b31501ad553052d7aab8f3acf9f.tar.xz joe-scripts-e4d32e31a39e4b31501ad553052d7aab8f3acf9f.tar.zst joe-scripts-e4d32e31a39e4b31501ad553052d7aab8f3acf9f.zip |
New script in progress to update gitjoe
Diffstat (limited to 'update-gitjoe.pl')
-rwxr-xr-x | update-gitjoe.pl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/update-gitjoe.pl b/update-gitjoe.pl new file mode 100755 index 0000000..b79f9aa --- /dev/null +++ b/update-gitjoe.pl @@ -0,0 +1,13 @@ +#!/usr/local/bin/perl + +use strict; +use warnings; +use Term::ANSIColor; + +sub main { + exit; +} + +main(); + +__END__ |