Can't get my theme assets to show

I’ve deployed my site via Capistrano. That part is successful however none of my theme assets are visible. I have my server configured to have it’s website index folder to current/web , I copied a .htaccess to shared\web with this:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Still nothing, what am I missing?

Ok, it doesn’t seem to be anything to .htaccess. I build my assets with capistrano-gulp, it does build successfully. But it is using a path of
current/web/app/themes/culturecollide-theme/gulpfile.js
instead of the #{release_path} which I have it set at. anyway this seem like that’s the problem.