mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-10 18:06:01 +02:00
restore entrypoint.sh
This commit is contained in:
parent
8b24b195a2
commit
05b0f95b79
1 changed files with 36 additions and 0 deletions
36
entrypoint.sh
Executable file
36
entrypoint.sh
Executable file
|
@ -0,0 +1,36 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
cd "$HOME"/rustdesk || exit 1
|
||||||
|
# shellcheck source=/dev/null
|
||||||
|
. "$HOME"/.cargo/env
|
||||||
|
|
||||||
|
argv=$*
|
||||||
|
|
||||||
|
while test $# -gt 0; do
|
||||||
|
case "$1" in
|
||||||
|
--release)
|
||||||
|
mkdir -p target/release
|
||||||
|
test -f target/release/libsciter-gtk.so || cp "$HOME"/libsciter-gtk.so target/release/
|
||||||
|
release=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--target)
|
||||||
|
shift
|
||||||
|
if test $# -gt 0; then
|
||||||
|
rustup target add "$1"
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -z $release ]; then
|
||||||
|
mkdir -p target/debug
|
||||||
|
test -f target/debug/libsciter-gtk.so || cp "$HOME"/libsciter-gtk.so target/debug/
|
||||||
|
fi
|
||||||
|
set -f
|
||||||
|
#shellcheck disable=2086
|
||||||
|
VCPKG_ROOT=/vcpkg cargo build $argv
|
Loading…
Add table
Add a link
Reference in a new issue