Commit 1adba3a
authored
Fix
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
```Sprockets::ArgumentError during deployment (#14)1 parent 9b3b7ea commit 1adba3a
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
0 commit comments