Skip to content

Commit 9c3173b

Browse files
committed
Fix pub-credentials.json location on macOS
1 parent a688776 commit 9c3173b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ build_script:
5252
# publish package
5353
- sh: |
5454
if [[ "$APPVEYOR_REPO_TAG_NAME" != "" ]]; then
55-
mkdir -p $HOME/.config/dart
56-
echo $PUB_DEV_TOKEN | base64 --decode > $HOME/.config/dart/pub-credentials.json
55+
mkdir -p $HOME/Library/Application\ Support/dart
56+
echo $PUB_DEV_TOKEN | base64 --decode > $HOME/Library/Application\ Support/dart/pub-credentials.json
5757
dart pub publish --force
5858
elif [[ "$APPVEYOR_PULL_REQUEST_NUMBER" == "" ]]; then
5959
dart pub publish --dry-run

0 commit comments

Comments
 (0)