We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
'install.sh' fails in attempt to inflate '.zip' file using 'tar'.
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=~/bin sh
...... Downloading https://downloads.arduino.cc/arduino-cli/arduino-cli_0.6.0_Windows_64bit.zip tar: This does not look like a tar archive tar: Skipping to next header tar: Exiting with failure status due to previous errors Failed to install arduino-cli
...... Downloading https://downloads.arduino.cc/arduino-cli/arduino-cli_0.6.0_Windows_64bit.zip Archive: /tmp/arduino-cli_0.6.0_Windows_64bit.zip inflating: /tmp/arduino-cli/LICENSE.txt inflating: /tmp/arduino-cli/README.md inflating: /tmp/arduino-cli/arduino-cli.exe arduino-cli.exe Version: 0.6.0 Commit: 3a08b07 installed successfully in /c/Users/Hans/bin
arduino-cli version
Patch:
156c156,160 < tar xf "$CLI_TMP_FILE" -C "$CLI_TMP" --- > if [ "$OS" = "Windows" ]; then > unzip -d "$CLI_TMP" "$CLI_TMP_FILE" > else > tar xf "$CLI_TMP_FILE" -C "$CLI_TMP" > fi
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug Report
'install.sh' fails in attempt to inflate '.zip' file using 'tar'.
Current behavior
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=~/bin sh
......
Downloading https://downloads.arduino.cc/arduino-cli/arduino-cli_0.6.0_Windows_64bit.zip
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Exiting with failure status due to previous errors
Failed to install arduino-cli
Expected behavior
......
Downloading https://downloads.arduino.cc/arduino-cli/arduino-cli_0.6.0_Windows_64bit.zip
Archive: /tmp/arduino-cli_0.6.0_Windows_64bit.zip
inflating: /tmp/arduino-cli/LICENSE.txt
inflating: /tmp/arduino-cli/README.md
inflating: /tmp/arduino-cli/arduino-cli.exe
arduino-cli.exe Version: 0.6.0 Commit: 3a08b07 installed successfully in /c/Users/Hans/bin
Environment
arduino-cli version
): arduino-cli.exe Version: 0.6.0 Commit: 3a08b07Additional context
Patch:
The text was updated successfully, but these errors were encountered: