You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Sprockets::ArgumentError during deployment (#14)
To avoid error:
> Sprockets::ArgumentError: link_tree argument must be a directory.
This should add the pattern like this:
```
/app/assets/builds/*
!/app/assets/builds/.keep
```
The same pattern as the one in default .gitignore file generated by
rails:
```
# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
```
0 commit comments