mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
17 lines
444 B
JavaScript
17 lines
444 B
JavaScript
|
const minimist = require('minimist')
|
||
|
const { batchedUpdateWithResultHandling } = require('./helpers/batchedUpdate')
|
||
|
|
||
|
const argv = minimist(process.argv.slice(2))
|
||
|
const commit = argv.commit !== undefined
|
||
|
|
||
|
if (!commit) {
|
||
|
console.error('DOING DRY RUN. TO SAVE CHANGES PASS --commit')
|
||
|
process.exit(1)
|
||
|
}
|
||
|
|
||
|
batchedUpdateWithResultHandling(
|
||
|
'projects',
|
||
|
{ imageName: null },
|
||
|
{ $set: { imageName: 'quay.io/sharelatex/texlive-full:2014.2' } }
|
||
|
)
|