File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
data-migration/user-transfer/src Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ export async function migrate(params: MigrateParameters) {
126126 const filename = `${ name } -${ params . dryRun ? 'dryrun' : 'run' } ${ ext } ` ;
127127 const data = JSON . stringify ( output ) ;
128128
129+ // eslint-disable-next-line security/detect-non-literal-fs-filename
129130 writeFileSync ( path . join ( dir , filename ) , data ) ;
130131
131132 await writeRemote (
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ export async function plan(params: PlanParameters) {
7171
7272 await writeRemote ( path , data , templatesS3BackupBucketName ) ;
7373
74+ // eslint-disable-next-line security/detect-non-literal-fs-filename
7475 writeFileSync ( `./migrations/${ filename } .json` , data ) ;
7576
7677 print ( `Results written to ${ filename } .json` ) ;
You can’t perform that action at this time.
0 commit comments