Skip to content

Commit 5b8ec33

Browse files
Address linting issues
1 parent 2ce0702 commit 5b8ec33

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

conda-recipe/bld.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ if NOT "%WHEELS_OUTPUT_FOLDER%"=="" (
4646
)
4747

4848
REM Delete artifacts from package
49-
del %PREFIX%\setup.py
50-
del %PREFIX%\LICENSE
51-
del %PREFIX%\README.md
52-
del %PREFIX%\MANIFEST.in
49+
del "%PREFIX%\setup.py"
50+
del "%PREFIX%\LICENSE"
51+
del "%PREFIX%\README.md"
52+
del "%PREFIX%\MANIFEST.in"

conda-recipe/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if [[ -v WHEELS_OUTPUT_FOLDER ]]; then
3535
fi
3636

3737
# Delete artifacts from package
38-
rm ${PREFIX}/setup.py
39-
rm ${PREFIX}/LICENSE
40-
rm ${PREFIX}/README.md
41-
rm ${PREFIX}/MANIFEST.in
38+
rm "${PREFIX}/setup.py"
39+
rm "${PREFIX}/LICENSE"
40+
rm "${PREFIX}/README.md"
41+
rm "${PREFIX}/MANIFEST.in"

0 commit comments

Comments
 (0)