Skip to content

Commit

Permalink
release v3.2.1 generated by @lando/prepare-release-action
Browse files Browse the repository at this point in the history
  • Loading branch information
rtfm-47 committed May 15, 2024
1 parent 1d95a71 commit d8dca2e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

v3.2.1 - [May 15, 2024](https://github.com/lando/setup-lando/releases/tag/v3.2.1)

* Fixed bug preventing `Unrecognized option` message from showing correctly [#44](https://github.com/lando/setup-lando/issues/44)

Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47778,7 +47778,7 @@ var __webpack_exports__ = {};
"use strict";


const SCRIPT_VERSION = 'v3.2.0';
const SCRIPT_VERSION = 'v3.2.1';

const core = __nccwpck_require__(2186);
const exec = __nccwpck_require__(1514);
Expand Down
2 changes: 1 addition & 1 deletion dist/setup-lando.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ param(
[switch]$Help
)

$SCRIPT_VERSION = "v3.2.0"
$SCRIPT_VERSION = "v3.2.1"
$LANDO_DEFAULT_MV = "3"
$LANDO_SETUP_PS1_URL = "https://get.lando.dev/setup-lando.ps1"
$LANDO_SETUP_SH_URL = "https://get.lando.dev/setup-lando.sh"
Expand Down
10 changes: 6 additions & 4 deletions dist/setup-lando.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SCRIPT_VERSION="v3.2.0"
SCRIPT_VERSION="v3.2.1"
#!/bin/bash
set -u
# Lando POSIX setup script.
Expand Down Expand Up @@ -193,7 +193,9 @@ ${tty_green}Environment Variables:${tty_reset}
CI installs in CI mode (e.g. does not prompt for user input)
EOS
exit "${1:-0}"
if [[ "${1:-0}" != "noexit" ]]; then
exit "${1:-0}"
fi
}

while [[ $# -gt 0 ]]; do
Expand Down Expand Up @@ -250,8 +252,8 @@ while [[ $# -gt 0 ]]; do
shift
;;
*)
warn "Unrecognized option: '$1'"
usage 1
usage "noexit"
abort "${tty_red}Unrecognized option${tty_reset} ${tty_bold}$1${tty_reset}! See available options in usage above."
;;
esac
done
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lando/setup-lando",
"description": "GitHub Action to setup Lando on GitHub Actions.",
"version": "3.2.0",
"version": "3.2.1",
"author": "Mike Pirog @pirog",
"main": "setup-lando.js",
"license": "GPL-3.0",
Expand Down

0 comments on commit d8dca2e

Please sign in to comment.