Skip to content

Commit 7ab4603

Browse files
committed
Fix: add missing quotes on string
1 parent ffa97ff commit 7ab4603

2 files changed

Lines changed: 3 additions & 14 deletions

File tree

.circleci/test-deploy.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,6 @@ jobs:
6868
working_directory: ~/project/sample_pip
6969
command: |
7070
pytest
71-
pip-install-test-no-packages:
72-
executor: python/default
73-
steps:
74-
- checkout
75-
- run:
76-
name: "Test"
77-
working_directory: ~/project/sample_pip
78-
command: |
79-
pytest
8071
pip-install-test-args:
8172
executor: python/default
8273
steps:
@@ -165,8 +156,6 @@ workflows:
165156
test-deploy:
166157
jobs:
167158
# Make sure to include "filters: *filters" in every test job you want to run as part of your deployment.
168-
- pip-install-test-no-packages:
169-
filters: *filters
170159
- install-python:
171160
filters: *filters
172161
name: install-python-<<matrix.version>>-<<matrix.executor>>

src/scripts/install-python.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ read -r MAJOR MINOR PATCH <<< "$PARAM_VERSION"
55

66
Install_Python() {
77
wget "https://www.python.org/ftp/python/$PARAM_VERSION/Python-$PARAM_VERSION.tgz"
8-
tar -xf Python-$PARAM_VERSION.tgz
9-
rm -f Python-$PARAM_VERSION.tgz
10-
cd Python-$PARAM_VERSION || exit 1
8+
tar -xf "Python-$PARAM_VERSION.tgz"
9+
rm -f "Python-$PARAM_VERSION.tgz"
10+
cd "Python-$PARAM_VERSION" || exit 1
1111
./configure --enable-optimizations
1212
make
1313
$SUDO make altinstall

0 commit comments

Comments
 (0)