summaryrefslogtreecommitdiff
path: root/scripts/make_lnk.sh
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-20 22:31:41 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-20 22:32:14 +0800
commitce77780ebcf548b0d823af7ae240364a56fa321a (patch)
tree4f71b68f944b143c0e0af1010bf189719d6e834c /scripts/make_lnk.sh
parentab6be7968b25afb57fc428695693484ad8576718 (diff)
Remove legacy jv and jvv binaries and related filesjvn_0.1.1
Diffstat (limited to 'scripts/make_lnk.sh')
-rw-r--r--scripts/make_lnk.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/scripts/make_lnk.sh b/scripts/make_lnk.sh
deleted file mode 100644
index 81a7dd5..0000000
--- a/scripts/make_lnk.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
-original_dir="$(pwd)"
-cd "$(dirname "$0")" || exit 1
-deploy_sh="$script_dir/dev/deploy.sh"
-dev_deploy_sh="$script_dir/dev/dev_deploy.sh"
-parent_dir="$(dirname "$script_dir")"
-
-if [ -f "$deploy_sh" ]; then
- link_path="$parent_dir/deploy"
- if [ -e "$link_path" ]; then
- rm -f "$link_path"
- fi
- ln -s "$deploy_sh" "$link_path"
-fi
-
-if [ -f "$dev_deploy_sh" ]; then
- link_path="$parent_dir/dev"
- if [ -e "$link_path" ]; then
- rm -f "$link_path"
- fi
- ln -s "$dev_deploy_sh" "$link_path"
-fi
-
-cd "$original_dir" || exit 1