# Run `bud.assets` after bud build.

**URL:** https://discourse.roots.io/t/run-bud-assets-after-bud-build/28942
**Category:** bud
**Created:** 2024-11-25T10:50:24Z
**Posts:** 1

## Post 1 by @DanLapteacru — 2024-11-25T10:50:24Z

Hello,

I’m trying to copy an asset after bud build but for some reason `bud.after` does not work.

```
app.after(async bud => {
    bud
      .assets([
        {
          from: bud.path('@dist/favicons/android-chrome-96x96.png'),
          to: bud.path('@dist/favicons/favicon-96x96.png'),
        }
    ]);
  })
```

I don’t receive any errors but the `.assets` method does not copy the file.

Is there any other solution to copy a file from `@dist` folder after the bud build?

Thanks.
