On my ubuntu machine I want to copy drupal to the public_html folder of my apache installation. On jenkins I have the following configuration:
#!/bin/bash echo "" echo "Switching to project docroot." cd /var/www/html/example.com/public_html echo "" echo "Pulling down the latest code." git pull origin master echo "" echo "Clearing drush caches." drush cache-clear drush echo "" echo "Running database updates." drush updb -y echo "" echo "Importing configuration." drush config-import -y echo "" echo "Clearing caches." drush cr echo "" echo "Deployment complete." When I launch the build on Jenkins I get the following error: *Pulling down the latest code.fatal: Not a git repository (or any of the parent directories): .git* What operations should I do to resolve this error? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/69d5d271-aa24-46b5-87a2-52caf64cf690%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
