mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
0346ba2698
* [web] CE script to verify TexLive versions on startup --------- Co-authored-by: Jakob Ackermann <jakob.ackermann@overleaf.com> GitOrigin-RevId: b99001d38468a775991a7284611aa333e956b919
46 lines
1,014 B
JavaScript
46 lines
1,014 B
JavaScript
const { batchedUpdate } = require('./helpers/batchedUpdate')
|
|
|
|
const oldImage = process.argv[2]
|
|
const newImage = process.argv[3]
|
|
|
|
function usage() {
|
|
console.log(
|
|
`Usage: update_project_image_name.js <old_texlive_image> <new_texlive_image>`
|
|
)
|
|
console.log(
|
|
'Environment variable ALL_TEX_LIVE_DOCKER_IMAGES must contain <new_texlive_image>.'
|
|
)
|
|
}
|
|
|
|
if (!oldImage || !newImage) {
|
|
usage()
|
|
process.exit(1)
|
|
}
|
|
|
|
if (!process.env.ALL_TEX_LIVE_DOCKER_IMAGES) {
|
|
console.error(
|
|
'Error: environment variable ALL_TEX_LIVE_DOCKER_IMAGES is not defined.'
|
|
)
|
|
usage()
|
|
process.exit(1)
|
|
}
|
|
|
|
if (!process.env.ALL_TEX_LIVE_DOCKER_IMAGES.split(',').includes(newImage)) {
|
|
console.error(`Error: ALL_TEX_LIVE_DOCKER_IMAGES doesn't contain ${newImage}`)
|
|
usage()
|
|
process.exit(1)
|
|
}
|
|
|
|
batchedUpdate(
|
|
'projects',
|
|
{ imageName: oldImage },
|
|
{ $set: { imageName: newImage } }
|
|
)
|
|
.then(() => {
|
|
console.log('Done')
|
|
process.exit(0)
|
|
})
|
|
.catch(error => {
|
|
console.error(error)
|
|
process.exit(1)
|
|
})
|