Last active
January 25, 2022 22:23
-
-
Save jsjoeio/d689d5615b7d2103d1edb73bcacfe421 to your computer and use it in GitHub Desktop.
code-server reproduce script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A script to reproduce issues in code-server quickly | |
async function main(args: string[]) { | |
const issueNum = args[0] || "1234" | |
console.log(`π Reproducing code-server issue #${issueNum}`) | |
console.log(`π https://github.com/coder/code-server/issues/${issueNum}`) | |
console.log(`π Creating temporary extensions directory...`) | |
// create temp directory | |
const tempExtsDir = await Deno.makeTempDir({ | |
prefix: `cs-${issueNum}`, | |
}) | |
console.log(`β Created temp extensions directory: ${tempExtsDir}`) | |
console.log(`π Creating temporary working directory...`) | |
// create working directory | |
const tempWorkingDir = await Deno.makeTempDir({ | |
prefix: `cs-${issueNum}-working`, | |
}) | |
console.log(`β Created temp extensions directory: ${tempWorkingDir}`) | |
// start up code-server and use extensions dir | |
console.log(`π Starting up code-server...`) | |
const proc = Deno.run({ | |
cmd: ["code-server", "-e", "--extensions-dir", tempExtsDir, tempWorkingDir], | |
}) | |
// If we don't do this, Deno will exit the script and | |
// kill code-server | |
await proc.status() | |
} | |
await main(Deno.args) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment