Skip to content

Commit

Permalink
fix: install script login issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf committed Dec 4, 2024
1 parent 357a904 commit 713ba52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Download the most recent [release](https://github.com/UCSD-E4E/git-lfs-synology/
These install scripts install `git-lfs-synology` globally. This will impact all git repos on your system. Please install manually if this is something that you need to avoid.

```powershell
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression (Invoke-WebRequest https://raw.githubusercontent.com/UCSD-E4E/git-lfs-synology/refs/heads/main/scripts/install.ps1).Content; Invoke-InstallScript
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression (Invoke-WebRequest -Headers @{"Cache-Control"="no-cache"} https://raw.githubusercontent.com/UCSD-E4E/git-lfs-synology/refs/heads/main/scripts/install.ps1).Content; Invoke-InstallScript
```

### Cargo
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function Invoke-InstallScript {
}

# Log into the server
git-lfs-synology --url $URL --user $User
git-lfs-synology login --url $URL --user $User

# Get the suffix
if ($IsWindows) {
Expand Down

0 comments on commit 713ba52

Please sign in to comment.