From 9960a21e76a1d8993a003db2e4b9d6be04509473 Mon Sep 17 00:00:00 2001 From: sethgoldin <4632977+sethgoldin@users.noreply.github.com> Date: Tue, 23 Feb 2021 12:03:15 -0500 Subject: [PATCH 1/8] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 530e87a..9871d6f 100644 --- a/README.md +++ b/README.md @@ -27,11 +27,11 @@ The MHL file generated on the sending side and verified on the receiving side fu - The command output format set to [text](https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-output.html#text-output) ## Tested platforms -Release 2.0.0-beta has been tested on Linux, macOS, and Windows, specifically on: -- Fedora 32 -- CentOS 7.8.2003 -- macOS Catalina 10.15.4 -- Windows 10 1909 +Release 2.0.0 has been tested on Linux, macOS, and Windows, specifically on: +- Fedora 32 and higher +- CentOS 7.8.2003 and higher +- macOS Catalina 10.15.4 and higher +- Windows 10 1909 and higher There aren't too many dependencies, so these scripts seem like they should work flawlessly on other major Linux distributions as well, though no other distributions have been tested. From 9273620a0b7ebea4e4f5173436a3bfe940bb1fcf Mon Sep 17 00:00:00 2001 From: sethgoldin <4632977+sethgoldin@users.noreply.github.com> Date: Tue, 23 Feb 2021 12:05:59 -0500 Subject: [PATCH 2/8] Update receive.ps1 --- receive.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/receive.ps1 b/receive.ps1 index 52d36a3..afbda0d 100644 --- a/receive.ps1 +++ b/receive.ps1 @@ -63,6 +63,6 @@ else if ($LASTEXITCODE -ne 0) { Exit-PSSession } else - { echo "The data from <$s3url> has been downloaded into $destinationLocalDirectory and has been verified." }} + { echo "Success! The data from <$s3url> has been downloaded into $destinationLocalDirectory and has been verified." }} Read-Host -Prompt "Press the Enter key to exit" From 8d597a97e47bd43770d6c6dcc7c73621334f9441 Mon Sep 17 00:00:00 2001 From: sethgoldin <4632977+sethgoldin@users.noreply.github.com> Date: Tue, 23 Feb 2021 12:06:12 -0500 Subject: [PATCH 3/8] Update receive.ps1 --- receive.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/receive.ps1 b/receive.ps1 index afbda0d..ffa13e4 100644 --- a/receive.ps1 +++ b/receive.ps1 @@ -1,4 +1,4 @@ -echo "s3-xxHash-transfer receive.ps1 version 2.0.0-beta" +echo "s3-xxHash-transfer receive.ps1 version 2.0.0" # Lets check to make sure that mhl is properly installed From 82f227cb7d159d59aa92b144b60a8e7447c7a0b7 Mon Sep 17 00:00:00 2001 From: sethgoldin <4632977+sethgoldin@users.noreply.github.com> Date: Tue, 23 Feb 2021 12:06:35 -0500 Subject: [PATCH 4/8] Update receive.sh --- receive.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/receive.sh b/receive.sh index 3634c33..ce7d774 100755 --- a/receive.sh +++ b/receive.sh @@ -1,6 +1,6 @@ #!/bin/bash -echo "s3-xxHash-transfer receive.sh version 2.0.0-beta" +echo "s3-xxHash-transfer receive.sh version 2.0.0" # Lets check to make sure that mhl is properly installed https://stackoverflow.com/a/677212/ @@ -69,4 +69,4 @@ mhl verify -f "$mhlFileName" && # Once the download has finished and the MHL file has been verified, let's let the user know that the data has been downloaded and verified. -echo "The data from <$s3url> has been downloaded into $destinationLocalDirectory and has been verified." +echo "Success! The data from <$s3url> has been downloaded into $destinationLocalDirectory and has been verified." From 7dbf28c259a467301728f089798b0f24d0045134 Mon Sep 17 00:00:00 2001 From: sethgoldin <4632977+sethgoldin@users.noreply.github.com> Date: Tue, 23 Feb 2021 12:06:57 -0500 Subject: [PATCH 5/8] Update send.ps1 --- send.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/send.ps1 b/send.ps1 index 848b0db..b89ef74 100644 --- a/send.ps1 +++ b/send.ps1 @@ -1,4 +1,4 @@ -echo "s3-xxHash-transfer send.ps1 version 2.0.0-beta" +echo "s3-xxHash-transfer send.ps1 version 2.0.0" # Lets check to make sure that mhl is properly installed @@ -66,6 +66,6 @@ if ($LASTEXITCODE -ne 0) # Once the upload has finished, let's let the user know that the data has been sealed and ingested. -echo "The data from <$sourceLocalDirectory> has been sealed with 64-bit xxHash checksums and has been ingested into AWS S3 at <$s3url>." +echo "Success! The data from <$sourceLocalDirectory> has been sealed with 64-bit xxHash checksums and has been ingested into AWS S3 at <$s3url>." Read-Host -Prompt "Press the Enter key to exit" From 3e86019e31b50ff984da7478d4f15274af57d095 Mon Sep 17 00:00:00 2001 From: sethgoldin <4632977+sethgoldin@users.noreply.github.com> Date: Tue, 23 Feb 2021 12:07:23 -0500 Subject: [PATCH 6/8] Update send.sh --- send.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/send.sh b/send.sh index 7829199..68c9f98 100755 --- a/send.sh +++ b/send.sh @@ -1,6 +1,6 @@ #!/bin/bash -echo "s3-xxHash-transfer send.sh version 2.0.0-beta" +echo "s3-xxHash-transfer send.sh version 2.0.0" # Lets check to make sure that mhl is properly installed https://stackoverflow.com/a/677212/ @@ -43,4 +43,4 @@ aws s3 sync "$sourceLocalDirectory" $s3url && # Once the upload has finished, let's let the user know that the data has been sealed and ingested. -echo "The data from <$sourceLocalDirectory> has been sealed with 64-bit xxHash checksums and has been ingested into AWS S3 at <$s3url>." +echo "Success! The data from <$sourceLocalDirectory> has been sealed with 64-bit xxHash checksums and has been ingested into AWS S3 at <$s3url>." From 3e4f540f42deb5b6dc52e464522c9561433ea0f0 Mon Sep 17 00:00:00 2001 From: sethgoldin <4632977+sethgoldin@users.noreply.github.com> Date: Tue, 23 Feb 2021 12:13:05 -0500 Subject: [PATCH 7/8] Update receive.ps1 --- receive.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/receive.ps1 b/receive.ps1 index ffa13e4..5272113 100644 --- a/receive.ps1 +++ b/receive.ps1 @@ -65,4 +65,4 @@ else else { echo "Success! The data from <$s3url> has been downloaded into $destinationLocalDirectory and has been verified." }} -Read-Host -Prompt "Press the Enter key to exit" +Read-Host -Prompt "Press the Enter key to exit" From fa6df4b7573358503e1052ec7ea28970686fe615 Mon Sep 17 00:00:00 2001 From: sethgoldin <4632977+sethgoldin@users.noreply.github.com> Date: Tue, 23 Feb 2021 12:15:24 -0500 Subject: [PATCH 8/8] Update send.ps1