mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 16:34:35 +01:00
10 lines
219 B
Bash
Executable file
10 lines
219 B
Bash
Executable file
#!/usr/bin/env bash
|
|
source ./ci/lib.sh
|
|
|
|
# RELEASE_PATH is the destination directory for the release from the root.
|
|
# Defaults to release
|
|
RELEASE_PATH="${RELEASE_PATH-release}"
|
|
|
|
rsync() {
|
|
command rsync -a --del "$@"
|
|
}
|