diff options
author | rebuilt <[email protected]> | 2021-08-06 13:31:26 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-06 13:31:26 +0200 |
commit | ca750d8ff4b99def210d6c5d98078a77aa1970aa (patch) | |
tree | e96d2a7d9b1ce4c586d28d3d08ab4d583fb09b53 /utils/installer/install_stylua.sh | |
parent | 89ee39cfd571279b98c6681e47f68ca43a48c44b (diff) | |
parent | 9fc6a2e1cdac513c8ff09069263ff102852be86a (diff) |
Merge pull request #1251 from grvxs/fix-most-typos
[Doc]: Fix most typos
Diffstat (limited to 'utils/installer/install_stylua.sh')
-rwxr-xr-x | utils/installer/install_stylua.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/installer/install_stylua.sh b/utils/installer/install_stylua.sh index cd8b3942..2a33de7e 100755 --- a/utils/installer/install_stylua.sh +++ b/utils/installer/install_stylua.sh @@ -30,7 +30,7 @@ function download_stylua() { exit 1 fi - echo "Installtion in progress.." + echo "Installation in progress.." unzip -q "$DOWNLOAD_DIR/$FILENAME.zip" -d "$DOWNLOAD_DIR" if [ -f "$DOWNLOAD_DIR/stylua" ]; then @@ -43,7 +43,7 @@ function download_stylua() { } function verify_install() { - echo "Verifying installtion.." + echo "Verifying installation.." local DOWNLOADED_VER DOWNLOADED_VER="$("$INSTALL_DIR/stylua" -V | awk '{ print $2 }')" if [ "$DOWNLOADED_VER" != "$RELEASE" ]; then |