Compare commits
10 Commits
5ced1b668d
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
| ec661af76b | |||
| bce5af676e | |||
| 328bfaed92 | |||
| 6cc10f9a46 | |||
| 4301013547 | |||
| 0adb11a225 | |||
| 49ee51f114 | |||
| 72e54f1119 | |||
| c560f37742 | |||
| 81161a4db7 |
@@ -7,9 +7,6 @@
|
||||
[submodule "GermanAirlinesVA-Schooling"]
|
||||
path = GermanAirlinesVA-Schooling
|
||||
url = https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Schooling.git
|
||||
[submodule "GermanAirlinesVA-React"]
|
||||
path = GermanAirlinesVA-React
|
||||
url = https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-React.git
|
||||
[submodule "GermanAirlinesVA-Routes"]
|
||||
path = GermanAirlinesVA-Routes
|
||||
url = https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Routes.git
|
||||
|
||||
+1
-1
Submodule GermanAirlinesVA-Fleet updated: b5b7967eb7...dda6143f8a
+1
-1
Submodule GermanAirlinesVA-GraphQL updated: a5598130db...172128b37b
Submodule GermanAirlinesVA-React deleted from 88439ec273
+1
-1
Submodule GermanAirlinesVA-Routes updated: 64280e3486...c12b87c618
Submodule GermanAirlinesVA-Schooling updated: 77799b26cc...f0a2ac15fb
+1
-1
Submodule GermanAirlinesVA-Social updated: 3a75eeb51f...c84adc30b3
+3
-2
@@ -7,6 +7,7 @@
|
||||
"germanairlinesva/schooling": "dev-master",
|
||||
"germanairlinesva/fleet": "dev-master",
|
||||
"germanairlinesva/react": "dev-master",
|
||||
"germanairlinesva/routes": "dev-master"
|
||||
"germanairlinesva/routes": "dev-master",
|
||||
"germanairlinesva/social": "dev-master"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,6 +24,10 @@ repos="{
|
||||
\"ga.routes\": {
|
||||
\"type\": \"git\",
|
||||
\"url\": \"https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Routes.git\"
|
||||
},
|
||||
\"ga.social\": {
|
||||
\"type\": \"git\",
|
||||
\"url\": \"https://git.hofmannnet.myhome-server.de/GermanAirlines/GermanAirlinesVA-Social.git\"
|
||||
}
|
||||
}"
|
||||
require="{
|
||||
|
||||
@@ -17,10 +17,48 @@ if [ $? != 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd ..
|
||||
whiptail --msgbox "Installing packages" 7 23
|
||||
cd ../plugins/germanairlinesva/fleet
|
||||
yarn install
|
||||
if [ $? != 0 ]; then
|
||||
echo -e "\033[0;31mCould not install fleet packages"
|
||||
exit 1
|
||||
fi
|
||||
cd ../graphql
|
||||
yarn install
|
||||
if [ $? != 0 ]; then
|
||||
echo -e "\033[0;31mCould not install graphql packages"
|
||||
exit 1
|
||||
fi
|
||||
cd ../react
|
||||
yarn install
|
||||
if [ $? != 0 ]; then
|
||||
echo -e "\033[0;31mCould not install react packages"
|
||||
exit 1
|
||||
fi
|
||||
cd ../routes
|
||||
yarn install
|
||||
if [ $? != 0 ]; then
|
||||
echo -e "\033[0;31mCould not install routes packages"
|
||||
exit 1
|
||||
fi
|
||||
cd ../schooling
|
||||
yarn install
|
||||
if [ $? != 0 ]; then
|
||||
echo -e "\033[0;31mCould not install schooling packages"
|
||||
exit 1
|
||||
fi
|
||||
cd ../social
|
||||
yarn install
|
||||
if [ $? != 0 ]; then
|
||||
echo -e "\033[0;31mCould not install social packages"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd /var/www/ga
|
||||
|
||||
whiptail --msgbox "Setting ownership" 7 21
|
||||
chown www-data -R .
|
||||
chown www-data:www-data -R .
|
||||
if [ $? != 0 ]; then
|
||||
echo -e "\033[0;31mCould not set ownership to www-data"
|
||||
exit 1
|
||||
|
||||
Reference in New Issue
Block a user