From f038f38f9fbaa58ea90a1596204cb6faaa4f3e5f Mon Sep 17 00:00:00 2001 From: Shanu Date: Thu, 17 Oct 2024 11:47:57 +0530 Subject: [PATCH] Update windows pwsh command to download the testing binary `-o` implementation to save the file is not working in powershell anymore. Use -OutFile instead --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f903ecfcc3..22dd333124 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,8 @@ Auto-upstall does the following : 🕊 | 🍏 MacOS x64
(Binary) | `curl http://get.nocodb.com/macos-x64 -o nocodb -L && chmod +x nocodb && ./nocodb` | | 🐧 Linux arm64
(Binary) | `curl http://get.nocodb.com/linux-arm64 -o nocodb -L && chmod +x nocodb && ./nocodb` | | 🐧 Linux x64
(Binary) | `curl http://get.nocodb.com/linux-x64 -o nocodb -L && chmod +x nocodb && ./nocodb` | -| 🪟 Windows arm64
(Binary) | `iwr http://get.nocodb.com/win-arm64.exe -o Noco-win-arm64.exe && .\Noco-win-arm64.exe` | -| 🪟 Windows x64
(Binary) | `iwr http://get.nocodb.com/win-x64.exe -o Noco-win-x64.exe && .\Noco-win-x64.exe` | +| 🪟 Windows arm64
(Binary) | `iwr http://get.nocodb.com/win-arm64.exe -OutFile Noco-win-arm64.exe && .\Noco-win-arm64.exe` | +| 🪟 Windows x64
(Binary) | `iwr http://get.nocodb.com/win-x64.exe -OutFile Noco-win-x64.exe && .\Noco-win-x64.exe` | > When running locally access nocodb by visiting: [http://localhost:8080/dashboard](http://localhost:8080/dashboard)