Skip to content

Commit c83efbb

Browse files
committed
fix(action): change arguments order to setup.sh script
1 parent fda3ea2 commit c83efbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ARCH=$(echo "${RUNNER_ARCH:-x64}" | awk '{print tolower($0)}')
55
OS=$(echo "${RUNNER_OS:-macOS}" | awk '{print tolower($0)}')
66

77
# Args
8-
FLUTTER_CHANNEL=${1:-stable}
9-
FLUTTER_VERSION=${2:-3.0.2}
8+
FLUTTER_VERSION=${1:-3.0.2}
9+
FLUTTER_CHANNEL=${2:-stable}
1010
FLUTTER_OS=$OS
1111
FLUTTER_ARCH=""
1212

0 commit comments

Comments
 (0)