mirror of
https://github.com/timvisee/ffsend.git
synced 2025-10-03 09:39:15 +02:00
Fix public Send test failure due to incorrect silent flag
This commit is contained in:
parent
8ac8f73ca7
commit
9a27be259d
2 changed files with 7 additions and 5 deletions
|
@ -139,7 +139,7 @@ test-public:
|
||||||
# Generate random file, upload/download and assert equality
|
# Generate random file, upload/download and assert equality
|
||||||
- ./ffsend upload test.txt -I
|
- ./ffsend upload test.txt -I
|
||||||
- ./ffsend download $(./ffsend history -q) -I -o=download.txt
|
- ./ffsend download $(./ffsend history -q) -I -o=download.txt
|
||||||
- "cmp --silent ./test.txt ./download.txt || (echo ERROR: Downloaded file is different than original; exit 1)"
|
- "cmp -s ./test.txt ./download.txt || (echo ERROR: Downloaded file is different than original; exit 1)"
|
||||||
- rm ./download.txt
|
- rm ./download.txt
|
||||||
|
|
||||||
# Cargo crate release
|
# Cargo crate release
|
||||||
|
|
10
README.md
10
README.md
|
@ -152,6 +152,8 @@ all available subcommands.
|
||||||
Because `ffsend` is still in alpha, only limited installation options are
|
Because `ffsend` is still in alpha, only limited installation options are
|
||||||
available right now.
|
available right now.
|
||||||
|
|
||||||
|
Make sure you meet and install the [requirements](#requirements).
|
||||||
|
|
||||||
See the operating system specific instructions below:
|
See the operating system specific instructions below:
|
||||||
* [Linux](#linux)
|
* [Linux](#linux)
|
||||||
* [macOS](#macos)
|
* [macOS](#macos)
|
||||||
|
@ -163,8 +165,8 @@ Using the [snap](#linux-snap-package) package is recommended if supported.
|
||||||
Alternatively you may install it manually using the
|
Alternatively you may install it manually using the
|
||||||
[prebuilt binaries](#linux-prebuilt-binaries).
|
[prebuilt binaries](#linux-prebuilt-binaries).
|
||||||
|
|
||||||
Only 64-bit (`x86_64`) packages and binaries are provided. For other
|
Only 64-bit (`x86_64`) packages and binaries are provided.
|
||||||
architectures and configurations you may [compile from source](#build).
|
For other architectures and configurations you may [compile from source](#build).
|
||||||
|
|
||||||
More packages options will be coming soon.
|
More packages options will be coming soon.
|
||||||
|
|
||||||
|
@ -250,8 +252,8 @@ Currently only [prebuilt binaries](#windows-prebuilt-binaries) are available for
|
||||||
If you're using the [Windows Subsystem for Linux](wsl), it's highly recommended
|
If you're using the [Windows Subsystem for Linux](wsl), it's highly recommended
|
||||||
to install the [prebuilt Linux binary](#prebuilt-binaries-for-linux) instead.
|
to install the [prebuilt Linux binary](#prebuilt-binaries-for-linux) instead.
|
||||||
|
|
||||||
Only 64-bit (`x86_64`) binaries are provided. For other architectures and
|
Only 64-bit (`x86_64`) binaries are provided.
|
||||||
configurations you may [compile from source](#build).
|
For other architectures and configurations you may [compile from source](#build).
|
||||||
|
|
||||||
A `chocolatey` and `scoop` package along with an `.msi` installer will be coming soon.
|
A `chocolatey` and `scoop` package along with an `.msi` installer will be coming soon.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue