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] Add the dir "logs" into the tarball stracture (#111)
With the changes introduced under #109
We missed the `logs` directory from the tarbal generation.
We fix this now.
before:
```
├── LICENSE.txt
├── NOTICE.txt
├── README.md
├── bin
│ └── mattermost-push-proxy
└── config
├── build.txt
└── mattermost-push-proxy.sample.json
```
after:
```
├── LICENSE.txt
├── NOTICE.txt
├── README.md
├── bin
│ └── mattermost-push-proxy
├── config
│ ├── build.txt
│ └── mattermost-push-proxy.sample.json
└── logs
```