Skip to content

fix path #653

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ sudo python3 setup.py install
1. Open PowerShell (Not CMD). To do that, right-click on the Windows start menu and select PowerShell or Terminal.
2. Copy and paste the code below and press enter
```
./install_edl_win10_win11.ps1
curl.exe -O https://raw.githubusercontent.com/bkerler/edl/master/install_edl_win10_win11.ps1; .\install_edl_win10_win11.ps1
```

#### Method 2 - Manual
Expand Down
4 changes: 2 additions & 2 deletions install_edl_win10_win11.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ foreach ($package in $packages) {
# Clone the edl repository
echo "Cloning edl repository..."
cd $env:ProgramFiles
git clone --recurse-submodules https://github.com/bkerler/edl.git
& "${env:ProgramFiles}\Git\cmd\git" clone --recurse-submodules https://github.com/bkerler/edl.git

# Install Python dependencies
echo "Installing Python dependencies..."
Expand All @@ -57,7 +57,7 @@ if (-not ($currentPath -split ';' -contains $edlPath)) {
echo ""
echo "'edl', 'zadig' installed successfully. You can now open a new PowerShell or Terminal window to use these tools."
echo ""
echo "Don't forget to run 'Zadig' to install the WinUSB driver for QHSUSB_BULK devices."
echo "Don't forget to run 'zadig' to install the WinUSB driver for QHSUSB_BULK devices."
echo ""
echo "Setup completed successfully. Press any key to continue"
$null = $host.UI.RawUI.ReadKey()
Loading