We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da00234 commit 22625b4Copy full SHA for 22625b4
Taskfile.yml
@@ -210,7 +210,11 @@ tasks:
210
cmds:
211
- |
212
set -e
213
- DEST_PATH="$HOME/.config/arduino-app-cli/"
+ DEST_PATH=$(case "$(uname)" in
214
+ Darwin) echo "$HOME/Library/Application Support/arduino-app-cli/" ;;
215
+ Linux) echo "$HOME/.config/arduino-app-cli/" ;;
216
+ *) echo "$AppData/arduino-app-cli/" ;;
217
+ esac)
218
TMP_PATH="$(mktemp -d)"
219
220
echo "Cloning examples into temporary directory ${TMP_PATH}..."
0 commit comments