From c62d5ebc80dfd323ab4acdb8efbb864404c27bd0 Mon Sep 17 00:00:00 2001 From: TommyE123 Date: Sun, 15 Jan 2017 22:28:45 +0000 Subject: [PATCH] Changed git-core to git Closes issue #72 --- README.md | 2 +- couchpotato/couchpotato-constants.sh | 2 +- headphones/headphones-constants.sh | 2 +- maintenance/update.sh | 2 +- mylar/mylar-constants.sh | 2 +- sickbeard/sickbeard-constants.sh | 2 +- sickgear/sickgear-constants.sh | 2 +- sickrage/sickrage-constants.sh | 2 +- wip/musicbrainz-installer.sh | 2 +- wip/plex/plex-installer.sh | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8202d6e..0719221 100755 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Note that AtoMiC ToolKit will be in continueous development. While extensive tes Clone repository on any Debian or Ubuntu based distro and execute the setup.sh bash script file.
-$ sudo apt-get install git-core
+$ sudo apt-get install git
 $ git clone https://github.com/htpcBeginner/AtoMiC-ToolKit ~/AtoMiC-ToolKit
 $ cd ~/AtoMiC-ToolKit
 $ sudo bash setup.sh
diff --git a/couchpotato/couchpotato-constants.sh b/couchpotato/couchpotato-constants.sh
index 82cc695..4306c88 100755
--- a/couchpotato/couchpotato-constants.sh
+++ b/couchpotato/couchpotato-constants.sh
@@ -3,7 +3,7 @@ APPNAME='couchpotato'
 APPSHORTNAME='cp'
 APPPATH='/home/'$UNAME'/.couchpotato'
 APPTITLE='CouchPotato'
-APPDEPS='git-core python python-cheetah python-pyasn1'
+APPDEPS='git python python-cheetah python-pyasn1'
 APPGIT='https://github.com/RuudBurger/CouchPotatoServer.git'
 APPDPORT='5050'
 APPSETTINGS=$APPPATH'/settings.conf'
diff --git a/headphones/headphones-constants.sh b/headphones/headphones-constants.sh
index 3ccd6e9..26f7e91 100755
--- a/headphones/headphones-constants.sh
+++ b/headphones/headphones-constants.sh
@@ -3,7 +3,7 @@ APPNAME='headphones'
 APPSHORTNAME='hp'
 APPPATH='/home/'$UNAME'/.headphones'
 APPTITLE='Headphones'
-APPDEPS='git-core python python-cheetah python-pyasn1'
+APPDEPS='git python python-cheetah python-pyasn1'
 APPGIT='https://github.com/rembo10/headphones.git'
 APPDPORT='8181'
 APPSETTINGS=$APPPATH'/config.ini'
diff --git a/maintenance/update.sh b/maintenance/update.sh
index 43b2bf7..4b8f0c1 100755
--- a/maintenance/update.sh
+++ b/maintenance/update.sh
@@ -35,7 +35,7 @@ then
 	sleep 1
 
 	echo -e $YELLOW'--->Installing prerequisites...'$ENDCOLOR
-	sudo apt-get -y install git-core
+	sudo apt-get -y install git
 
 	echo
 	sleep 1
diff --git a/mylar/mylar-constants.sh b/mylar/mylar-constants.sh
index 639f8b3..38e96cd 100755
--- a/mylar/mylar-constants.sh
+++ b/mylar/mylar-constants.sh
@@ -3,7 +3,7 @@ APPNAME='mylar'
 APPSHORTNAME='mylar'
 APPPATH='/home/'$UNAME'/.mylar'
 APPTITLE='Mylar'
-APPDEPS='git-core python python-cheetah python-pyasn1'
+APPDEPS='git python python-cheetah python-pyasn1'
 APPGIT='https://github.com/evilhero/mylar.git'
 APPDPORT='8090'
 APPSETTINGS=$APPPATH'/config.ini'
diff --git a/sickbeard/sickbeard-constants.sh b/sickbeard/sickbeard-constants.sh
index 1eb23eb..183ba2d 100755
--- a/sickbeard/sickbeard-constants.sh
+++ b/sickbeard/sickbeard-constants.sh
@@ -3,7 +3,7 @@ APPNAME='sickbeard'
 APPSHORTNAME='sb'
 APPPATH='/home/'$UNAME'/.sickbeard'
 APPTITLE='SickBeard'
-APPDEPS='git-core python python-cheetah python-pyasn1'
+APPDEPS='git python python-cheetah python-pyasn1'
 APPGIT='https://github.com/midgetspy/Sick-Beard.git'
 APPDPORT='8081'
 APPSETTINGS=$APPPATH'/config.ini'
diff --git a/sickgear/sickgear-constants.sh b/sickgear/sickgear-constants.sh
index 049e9ee..8d0aef0 100755
--- a/sickgear/sickgear-constants.sh
+++ b/sickgear/sickgear-constants.sh
@@ -3,7 +3,7 @@ APPNAME='sickgear'
 APPSHORTNAME='sg'
 APPPATH='/home/'$UNAME'/.sickgear'
 APPTITLE='SickGear'
-APPDEPS='git-core python python-cheetah python-pyasn1'
+APPDEPS='git python python-cheetah python-pyasn1'
 APPGIT='https://github.com/SickGear/SickGear.git'
 APPDPORT='8081'
 APPSETTINGS=$APPPATH'/config.ini'
diff --git a/sickrage/sickrage-constants.sh b/sickrage/sickrage-constants.sh
index ca425f1..9d58dc0 100755
--- a/sickrage/sickrage-constants.sh
+++ b/sickrage/sickrage-constants.sh
@@ -3,7 +3,7 @@ APPNAME='sickrage'
 APPSHORTNAME='sr'
 APPPATH='/home/'$UNAME'/.sickrage'
 APPTITLE='SickRage'
-APPDEPS='git-core python python-cheetah python-pyasn1'
+APPDEPS='git python python-cheetah python-pyasn1'
 #APPGIT='https://github.com/SiCKRAGETV/SickRage.git'
 APPGIT='https://github.com/SickRage/SickRage.git'
 APPDPORT='8081'
diff --git a/wip/musicbrainz-installer.sh b/wip/musicbrainz-installer.sh
index aaaaa06..0114c1b 100755
--- a/wip/musicbrainz-installer.sh
+++ b/wip/musicbrainz-installer.sh
@@ -44,7 +44,7 @@ sudo apt-get -y install \
     postgresql-server-dev-all \
     postgresql-contrib-9.3 \
     postgresql-plperl-9.3 \
-    git-core \
+    git \
     memcached \
     redis-server \
     nodejs \
diff --git a/wip/plex/plex-installer.sh b/wip/plex/plex-installer.sh
index 6d1efee..4e5afd3 100755
--- a/wip/plex/plex-installer.sh
+++ b/wip/plex/plex-installer.sh
@@ -26,7 +26,7 @@ echo
 sleep 1
 
 echo -e $YELLOW'--->Installing prerequisites...'$ENDCOLOR
-sudo apt-get -y install git-core
+sudo apt-get -y install git
 
 echo
 sleep 1