We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turns out our presently-undocumented Git Integration fails if you've configured an absolute drupal_basepath.
drupal_basepath
The code here expects it to be relative:
# Clone repos if necessary drupal_sites.each do |name, site| if site.has_key?("git_url") && site.has_key?("git_dir") && !Dir.exists?( Dir.pwd + "/" + drupal_basepath + "/" + site['git_dir'] + "/.git") puts "No Git Clone found for \"#{name}\"" git_cmd = "git clone #{site['git_url']} #{drupal_basepath}/#{site['git_dir']}" %x{ #{git_cmd} } end end
So . . don't do that.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Turns out our presently-undocumented Git Integration fails if you've configured an absolute
drupal_basepath
.The code here expects it to be relative:
So . . don't do that.
The text was updated successfully, but these errors were encountered: