Commit 29dbd016bb9170fb8b75f40b28e43254494e7175
1 parent
919a8e72
bug fix
Showing
1 changed file
with
4 additions
and
1 deletions
spod-manager.sh
... | ... | @@ -265,12 +265,15 @@ echo "SPOD MANAGER Action: $ACTION ..." |
265 | 265 | cp -r $SPODWWW /var |
266 | 266 | |
267 | 267 | cd /var/www |
268 | + git remote rm origin | |
268 | 269 | git init |
269 | 270 | git remote add origin http://$GITUSER:$GITPASSWORD@$GITSPOD/isislab/spod-core.git |
270 | 271 | cd /var/www/ow_plugins |
271 | - git init | |
272 | + git remote rm origin | |
273 | + git init | |
272 | 274 | git remote add origin http://$GITUSER:$GITPASSWORD@$GITSPOD/isislab/spod-plugins.git |
273 | 275 | cd /var/www/ow_themes |
276 | + git remote rm origin | |
274 | 277 | git init |
275 | 278 | git remote add origin http://$GITUSER:$GITPASSWORD@$GITSPOD/isislab/spod-themes.git |
276 | 279 | service apache2 start | ... | ... |