fully test and verify policy script functionality
Some checks failed
Go / build (push) Has been cancelled
Go / release (push) Has been cancelled

This commit is contained in:
2025-11-11 09:37:42 +00:00
parent 597711350a
commit e9fb314496
16 changed files with 665 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env node
const fs = require('fs')
const filePath = '/home/orly/cs-policy-output.txt'
const fileExists = fs.existsSync(filePath)
if (fileExists) {
fs.appendFileSync(filePath, `${Date.now()}: Hey there!\n`)
} else {
fs.writeFileSync(filePath, `${Date.now()}: Hey there!\n`)
}