Skip to content

Commit 28779b2

Browse files
committed
remove force
1 parent cac8d1f commit 28779b2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.scripts/build_unix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ done
5050

5151
# Check if it build something, this is a hotfix for the skips inside additional_recipes
5252
if compgen -G "${CONDA_BLD_PATH}/${target}*/*.conda" > /dev/null; then
53-
pixi run upload "${CONDA_BLD_PATH}/${target}"*/*.conda --force
53+
pixi run upload "${CONDA_BLD_PATH}/${target}"*/*.conda
5454
else
5555
echo "Warning: No .conda files found in ${CONDA_BLD_PATH}/${target}"
5656
echo "This might be due to all the packages being skipped"

.scripts/build_win.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if exist "%CONDA_BLD_PATH%\win-64\*.conda" (
3030
echo Found .conda files, starting upload...
3131
for %%F in ("%CONDA_BLD_PATH%\win-64\*.conda") do (
3232
echo Uploading %%F
33-
pixi run upload "%%F" --force
33+
pixi run upload "%%F"
3434
if errorlevel 1 exit 1
3535
)
3636
) else (

0 commit comments

Comments
 (0)