Skip to content

Commit

Permalink
Change download icon in install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
emilevr committed Nov 4, 2023
1 parent 8804e1f commit 04ef26b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions install/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function Install-LinuxOrMacOS {
$installedBinaryPath = "$installDirPath/space"

try {
Write-Host "⭳⭳ Downloading the latest version from $latestReleaseArchive"
Write-Host "⬇⬇ Downloading the latest version from $latestReleaseArchive"
Invoke-WebRequest -Uri $latestReleaseArchive -OutFile $archiveFilePath | Out-Null

Write-Host "👷 Extracting archive $archiveFilePath to $extractDirPath"
Expand Down Expand Up @@ -58,7 +58,7 @@ function Install-Windows {
$pathSeparator = ';'

try {
Write-Host "⭳⭳ Downloading the latest version from $latestReleaseArchive"
Write-Host "⬇⬇ Downloading the latest version from $latestReleaseArchive"
Invoke-WebRequest -Uri $latestReleaseArchive -OutFile $archiveFilePath | Out-Null

Write-Host "👷 Extracting archive $archiveFilePath to $installDirPath"
Expand Down
2 changes: 1 addition & 1 deletion install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ INSTALL_FILE_PATH=$INSTALL_DIR/space

echo "Installing space CLI to $INSTALL_DIR"

echo "⭳⭳ Downloading the latest binary from $ARCHIVE_FILE_URL ..."
echo "⬇⬇ Downloading the latest binary from $ARCHIVE_FILE_URL ..."
(curl -L -o $ARCHIVE_FILE_PATH $ARCHIVE_FILE_URL) || \
{ echo "❌ Download failed!"; exit 1; }

Expand Down

0 comments on commit 04ef26b

Please sign in to comment.