diff options
| -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.ps1 | 2 | ||||
| -rw-r--r-- | Run-Desktop.sh | 2 | ||||
| -rw-r--r-- | Run-WrapperExample.ps1 | 2 | ||||
| -rw-r--r-- | Run-WrapperExample.sh | 2 |
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 |
