Skip to content

Commit 442f65b

Browse files
committed
chore(webinstall): Prettify post instructions
1 parent d7a656c commit 442f65b

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

webinstall/install.bat

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,21 @@
2323
::
2424

2525
set URL=https://github.com/emacs-eask/binaries/raw/master/win-x64.zip
26-
set EAKS_BIN_DIR=%USERPROFILE%\.local\bin
26+
set EASK_BIN_DIR=%USERPROFILE%\.local\bin
2727
set ZIP=%EASK_BIN_DIR%\eask.zip
2828

29-
mkdir %EAKS_BIN_DIR%
29+
mkdir %EASK_BIN_DIR%
3030

3131
curl.exe -fsSL %URL% -o %ZIP%
3232

33-
tar.exe -xf %ZIP% -C %EAKS_BIN_DIR%
33+
tar.exe -xf %ZIP% -C %EASK_BIN_DIR%
3434

3535
del %ZIP%
3636

37-
echo ✓ Eask is installed in %EAKS_BIN_DIR%.
37+
echo.
38+
echo ✓ Eask is installed in %EASK_BIN_DIR%.
3839
echo.
3940
echo Don't forget to add %EASK_BIN_DIR% to PATH environment variable:
4041
echo.
4142
echo set PATH=%EASK_BIN_DIR%;%%PATH%%
43+
echo.

webinstall/install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ unzip -d "$eask_bin_dir" -o "$zip"
5353

5454
rm $zip
5555

56+
echo
5657
echo "✓ Eask is installed in ${eask_bin_dir}."
5758
echo
5859
echo "Don't forget to add ${eask_bin_dir} to PATH environment variable:"
5960
echo
6061
echo " export PATH=\"${eask_bin_dir}:\$PATH\""
61-
62+
echo

0 commit comments

Comments
 (0)