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
The comand that removes/cleans the assets is getting an error. Mostly because the command is too long.
engineyard-serverside-2.6.14/lib/engineyard-serverside/spawner.rb:125:in exec: Argument list too long
I checked the source code and its joining the files to be removed.
//engineyard-serverside/lib/engineyard-serverside/rails_assets/strategy.rb remove_assets = [] (assets_on_disk - assets_in_manifest).each do |asset| remove_assets << "'#{asset}'" remove_assets << "'#{asset}.gz'" if all_assets_on_disk.include?("#{asset}.gz") end run("rm -rf #{remove_assets.join(' ')}")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The comand that removes/cleans the assets is getting an error.
Mostly because the command is too long.
engineyard-serverside-2.6.14/lib/engineyard-serverside/spawner.rb:125:in exec: Argument list too long
I checked the source code and its joining the files to be removed.
The text was updated successfully, but these errors were encountered: