@@ -134,29 +134,29 @@ for:
134134 - BUNDLE_NAME=libpythonbundle.so
135135
136136 # arm64-v8a
137- - pushd ~/.local/share/python-for-android/dists/serious_python/_python_bundle__arm64-v8a/_python_bundle
137+ - cd ~/.local/share/python-for-android/dists/serious_python/_python_bundle__arm64-v8a/_python_bundle
138138 - zip -r $BUNDLE_NAME .
139139 - mv $BUNDLE_NAME ../../libs/arm64-v8a
140- - popd
140+ - cd -
141141
142142 # armeabi-v7a
143- - pushd ~/.local/share/python-for-android/dists/serious_python/_python_bundle__armeabi-v7a/_python_bundle
143+ - cd ~/.local/share/python-for-android/dists/serious_python/_python_bundle__armeabi-v7a/_python_bundle
144144 - zip -r $BUNDLE_NAME .
145145 - mv $BUNDLE_NAME ../../libs/armeabi-v7a
146- - popd
146+ - cd -
147147
148148 # armeabi-v7a
149- - pushd ~/.local/share/python-for-android/dists/serious_python/_python_bundle__x86_64/_python_bundle
149+ - cd ~/.local/share/python-for-android/dists/serious_python/_python_bundle__x86_64/_python_bundle
150150 - zip -r $BUNDLE_NAME .
151151 - mv $BUNDLE_NAME ../../libs/x86_64
152- - popd
152+ - cd -
153153
154154 # package all .so files
155155 - DIST_FILE_NAME=python-android-dist-v$APPVEYOR_BUILD_VERSION.tar.gz
156- - pushd ~/.local/share/python-for-android/dists/serious_python/libs
156+ - cd ~/.local/share/python-for-android/dists/serious_python/libs
157157 - tar -czvf $DIST_FILE_NAME *
158158 - appveyor PushArtifact $DIST_FILE_NAME -DeploymentName python-dist-android
159- - popd
159+ - cd -
160160
161161 deploy :
162162 provider : GitHub
@@ -382,55 +382,55 @@ for:
382382 python3 ci/patch_pubspec.py src/serious_python_windows/pubspec.yaml $PKG_VER
383383 python3 ci/patch_pubspec.py src/serious_python_linux/pubspec.yaml $PKG_VER
384384
385- pushd src/serious_python_platform_interface
385+ cd src/serious_python_platform_interface
386386 dart pub publish --force || exit 1
387- popd
387+ cd -
388388
389- pushd src/serious_python_android
389+ cd src/serious_python_android
390390 dart pub publish --force || exit 1
391- popd
391+ cd -
392392
393- pushd src/serious_python_darwin
393+ cd src/serious_python_darwin
394394 dart pub publish --force || exit 1
395- popd
395+ cd -
396396
397- pushd src/serious_python_windows
397+ cd src/serious_python_windows
398398 dart pub publish --force || exit 1
399- popd
399+ cd -
400400
401- pushd src/serious_python_linux
401+ cd src/serious_python_linux
402402 dart pub publish --force || exit 1
403- popd
403+ cd -
404404
405- pushd src/serious_python
405+ cd src/serious_python
406406 dart pub publish --force || exit 1
407- popd
407+ cd -
408408
409409 elif [[ "$APPVEYOR_PULL_REQUEST_NUMBER" == "" ]]; then
410410
411- pushd src/serious_python_platform_interface
411+ cd src/serious_python_platform_interface
412412 dart pub publish --dry-run
413- popd
413+ cd -
414414
415- pushd src/serious_python_android
415+ cd src/serious_python_android
416416 dart pub publish --dry-run
417- popd
417+ cd -
418418
419- pushd src/serious_python_darwin
419+ cd src/serious_python_darwin
420420 dart pub publish --dry-run
421- popd
421+ cd -
422422
423- pushd src/serious_python_windows
423+ cd src/serious_python_windows
424424 dart pub publish --dry-run
425- popd
425+ cd -
426426
427- pushd src/serious_python_linux
427+ cd src/serious_python_linux
428428 dart pub publish --dry-run
429- popd
429+ cd -
430430
431- pushd src/serious_python
431+ cd src/serious_python
432432 dart pub publish --dry-run
433- popd
433+ cd -
434434 fi
435435
436436 test : off
0 commit comments