mirror of
https://github.com/caprover/caprover
synced 2025-10-30 01:57:03 +00:00
Compare commits
6 Commits
e902762809
...
ec8371dc12
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ec8371dc12 | ||
|
|
8bd58bf32c | ||
|
|
1b89d9123b | ||
|
|
bc2318d056 | ||
|
|
2664437159 | ||
|
|
38096fff15 |
@@ -1,7 +1,8 @@
|
||||
## [Next Version - available as `edge`]
|
||||
|
||||
- Descriptive error on installations on incompatible systems (e.g. Proxmox LXC) [issues-2326](https://github.com/caprover/caprover/issues/2326)
|
||||
- Moved one click app creation process to backend for more stability [PR-2334](https://github.com/caprover/caprover/pull/2334)
|
||||
- Improved: Descriptive error on installations on incompatible systems (e.g. Proxmox LXC) [issues-2326](https://github.com/caprover/caprover/issues/2326)
|
||||
- Improved: Moved one click app creation process to backend for more stability [PR-2334](https://github.com/caprover/caprover/pull/2334)
|
||||
- Improved: Reduced the Backup size by excluding the GoAccess logs [PR-2336](https://github.com/caprover/caprover/pull/2336)
|
||||
|
||||
## [1.14.0] - 2025-06-07
|
||||
|
||||
|
||||
@@ -658,7 +658,7 @@ export default class BackupManager {
|
||||
// https://github.com/jprichardson/node-fs-extra/issues/638
|
||||
return new Promise(function (resolve, reject) {
|
||||
const child = exec(
|
||||
`mkdir -p {dest} && cp -rp ${CaptainConstants.captainDataDirectory} ${dest}`
|
||||
`mkdir -p ${dest} && cp -rp ${CaptainConstants.captainDataDirectory} ${dest} && mkdir -p ${dest}/shared-logs && rm -rf ${dest}/shared-logs`
|
||||
)
|
||||
child.addListener('error', reject)
|
||||
child.addListener('exit', resolve)
|
||||
|
||||
Reference in New Issue
Block a user