feat: remove old scripts folder on start
This commit is contained in:
parent
7959ecfee3
commit
30c29b3f77
1 changed files with 6 additions and 0 deletions
|
@ -217,6 +217,12 @@ export const setEnvVariable = async (key: EnvKeys, value: string) => {
|
|||
* Copies the system files from the assets folder to the current working directory
|
||||
*/
|
||||
export const copySystemFiles = async () => {
|
||||
// Remove old unused files
|
||||
if (await pathExists(path.join(process.cwd(), 'scripts'))) {
|
||||
fileLogger.info('Removing old scripts folder');
|
||||
await fs.promises.rmdir(path.join(process.cwd(), 'scripts'), { recursive: true });
|
||||
}
|
||||
|
||||
const assetsFolder = path.join('/snapshot', 'runtipi', 'packages', 'cli', 'assets');
|
||||
|
||||
// Copy docker-compose.yml file
|
||||
|
|
Loading…
Reference in a new issue