mirror of
https://github.com/cdr/code-server.git
synced 2025-12-08 01:12:40 +01:00
10 lines
214 B
Bash
Executable file
10 lines
214 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
cd test
|
|
PASSWORD=e45432jklfdsab CODE_SERVER_ADDRESS=http://localhost:8080 yarn folio --config=config.ts --reporter=list
|
|
}
|
|
|
|
main "$@"
|