summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-09 23:58:47 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-09 23:59:18 +0800
commit75f7578d784a4e209da4b29a80d27940197d8945 (patch)
tree5086f022beb3e56321940fc7d80e150b518e8ea3
parent6dedba9e3cedf6463f25460eba84111d6a0bd0dd (diff)
Rename build scripts to Pre-Build
-rw-r--r--Pre-Build.ps1 (renamed from Collect-Command-Line.ps1)0
-rw-r--r--Pre-Build.sh (renamed from Collect-Command-Line.sh)0
-rw-r--r--Run-Desktop.ps12
-rw-r--r--Run-Desktop.sh2
-rw-r--r--Run-WrapperExample.ps12
-rw-r--r--Run-WrapperExample.sh2
6 files changed, 4 insertions, 4 deletions
diff --git a/Collect-Command-Line.ps1 b/Pre-Build.ps1
index d8705a2..d8705a2 100644
--- a/Collect-Command-Line.ps1
+++ b/Pre-Build.ps1
diff --git a/Collect-Command-Line.sh b/Pre-Build.sh
index 61545b7..61545b7 100644
--- a/Collect-Command-Line.sh
+++ b/Pre-Build.sh
diff --git a/Run-Desktop.ps1 b/Run-Desktop.ps1
index 4cd542d..58f802a 100644
--- a/Run-Desktop.ps1
+++ b/Run-Desktop.ps1
@@ -1,4 +1,4 @@
-& ".\Collect-Command-Line.ps1"
+& ".\Pre-Build.ps1"
if ($LASTEXITCODE -eq 0) {
dotnet run --project .\JVDesktop
diff --git a/Run-Desktop.sh b/Run-Desktop.sh
index 21a21f0..1ce299b 100644
--- a/Run-Desktop.sh
+++ b/Run-Desktop.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-./Collect-Command-Line.sh
+./Pre-Build.sh
if [ $? -eq 0 ]; then
dotnet run --project ./JVDesktop
diff --git a/Run-WrapperExample.ps1 b/Run-WrapperExample.ps1
index b2fda22..d976c19 100644
--- a/Run-WrapperExample.ps1
+++ b/Run-WrapperExample.ps1
@@ -1,4 +1,4 @@
-& ".\Collect-Command-Line.ps1"
+& ".\Pre-Build.ps1"
if ($LASTEXITCODE -eq 0) {
Clear-Host
diff --git a/Run-WrapperExample.sh b/Run-WrapperExample.sh
index c51bbdb..42e633f 100644
--- a/Run-WrapperExample.sh
+++ b/Run-WrapperExample.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-./Collect-Command-Line.sh
+./Pre-Build.sh
if [ $? -eq 0 ]; then
clear