File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 162
162
# publish package
163
163
- sh : |
164
164
if [[ "$APPVEYOR_REPO_TAG_NAME" != "" ]]; then
165
- mkdir -p $HOME/Library/Application\ Support /dart
166
- echo $PUB_DEV_TOKEN | base64 --decode > $HOME/Library/Application\ Support /dart/pub-credentials.json
165
+ mkdir -p $HOME/.config /dart
166
+ echo $PUB_DEV_TOKEN | base64 --decode > $HOME/.config /dart/pub-credentials.json
167
167
dart pub publish --force
168
168
elif [[ "$APPVEYOR_PULL_REQUEST_NUMBER" == "" ]]; then
169
169
dart pub publish --dry-run
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ class PackageCommand extends Command {
240
240
} else if (Platform .isLinux) {
241
241
arch = 'x86_64-unknown-linux-gnu' ;
242
242
} else if (Platform .isWindows) {
243
- arch = 'x86_64-pc-windows-msvc-static ' ;
243
+ arch = 'x86_64-pc-windows-msvc-shared ' ;
244
244
}
245
245
246
246
final url =
You can’t perform that action at this time.
0 commit comments