mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 00:44:31 +01:00
12 lines
128 B
Bash
Executable file
12 lines
128 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
yarn --frozen-lockfile
|
|
|
|
yarn fmt
|
|
}
|
|
|
|
main "$@"
|