Skip to content

Commit 6c57a0c

Browse files
committed
Fix action.sh syntax
1 parent dee8d36 commit 6c57a0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,11 @@ echo "${FLUTTER_PUB_CACHE}/bin" >> $GITHUB_PATH
173173
echo "${FLUTTER_RUNNER_TOOL_CACHE}/flutter/bin" >> $GITHUB_PATH
174174

175175
# Invoke Flutter SDK to suppress the analytics.
176-
${FLUTTER_RUNNER_TOOL_CACHE}/flutter/bin/flutter --version --suppress-analytics 2&>1 > /dev/null
176+
${FLUTTER_RUNNER_TOOL_CACHE}/flutter/bin/flutter --version --suppress-analytics 2>&1 > /dev/null
177177

178178
# Disable Google Analytics and CLI animations
179-
${FLUTTER_RUNNER_TOOL_CACHE}/flutter/bin/flutter config --no-analytics 2&>1 > /dev/null
180-
${FLUTTER_RUNNER_TOOL_CACHE}/flutter/bin/flutter config --no-cli-animations 2&>1 > /dev/null
179+
${FLUTTER_RUNNER_TOOL_CACHE}/flutter/bin/flutter config --no-analytics 2>&1 > /dev/null
180+
${FLUTTER_RUNNER_TOOL_CACHE}/flutter/bin/flutter config --no-cli-animations 2>&1 > /dev/null
181181

182182
# Report success, and print version.
183183
echo "Succesfully installed Flutter SDK:"

0 commit comments

Comments
 (0)