36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
|
import { promisify } from 'util'
|
||
|
import childProcessPromise from 'child-process-promise'
|
||
|
import path from 'path'
|
||
|
import fs from 'fs'
|
||
|
import { envFile } from './mastodon-config'
|
||
|
|
||
|
const exec = childProcessPromise.exec
|
||
|
const stat = promisify(fs.stat)
|
||
|
const writeFile = promisify(fs.writeFile)
|
||
|
const dir = __dirname
|
||
|
|
||
|
const GIT_URL = 'https://github.com/tootsuite/mastodon.git'
|
||
|
const GIT_TAG_OR_COMMIT = 'v3.1.3'
|
||
|
const GIT_BRANCH = 'master'
|
||
|
|
||
|
const mastodonDir = path.join(dir, '../mastodon')
|
||
|
|
||
|
export default async function cloneMastodon () {
|
||
|
try {
|
||
|
await stat(mastodonDir)
|
||
|
} catch (e) {
|
||
|
console.log('Cloning mastodon...')
|
||
|
await exec(`git clone --single-branch --branch ${GIT_BRANCH} ${GIT_URL} "${mastodonDir}"`)
|
||
|
await exec('git fetch origin --tags', { cwd: mastodonDir }) // may already be cloned, e.g. in CI
|
||
|
await exec(`git checkout ${GIT_TAG_OR_COMMIT}`, { cwd: mastodonDir })
|
||
|
await writeFile(path.join(dir, '../mastodon/.env'), envFile, 'utf8')
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (require.main === module) {
|
||
|
cloneMastodon().catch(err => {
|
||
|
console.error(err)
|
||
|
process.exit(1)
|
||
|
})
|
||
|
}
|