Update index.js

This commit is contained in:
Nova Cat 2025-01-20 18:34:15 -08:00
parent c4be35f22d
commit 1da6ef43c7

View file

@ -1,5 +1,5 @@
const { exec } = require('node:child_process') const { exec } = require('node:child_process')
var additional = process.env.additional;
exec('apk add bash git', (err, output) => { exec('apk add bash git ' + additional, (err, output) => {
console.log(output) console.log(output)
}) })