mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 08:27:17 +01:00
10 lines
125 B
Bash
Executable file
10 lines
125 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# postinstall.sh - Does nothing at the moment.
|
|
|
|
set -eu
|
|
|
|
main() {
|
|
cd "$(dirname "${0}")/.."
|
|
}
|
|
|
|
main "$@"
|