Skip to content

Commit d7a656c

Browse files
committed
fix(webinstall): Fix variable names
1 parent 6151313 commit d7a656c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

webinstall/install.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ del %ZIP%
3636

3737
echo ✓ Eask is installed in %EAKS_BIN_DIR%.
3838
echo.
39-
echo Don't forget to add `%EASK_BIN_DIR% to PATH environment variable:
39+
echo Don't forget to add %EASK_BIN_DIR% to PATH environment variable:
4040
echo.
41-
echo set PATH=%ELDEV_BIN_DIR%;%%PATH%%
41+
echo set PATH=%EASK_BIN_DIR%;%%PATH%%

webinstall/install.sh

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

5454
rm $zip
5555

56-
echo "✓ Eask is installed in %EAKS_BIN_DIR%."
56+
echo "✓ Eask is installed in ${eask_bin_dir}."
5757
echo
5858
echo "Don't forget to add ${eask_bin_dir} to PATH environment variable:"
5959
echo

0 commit comments

Comments
 (0)