cicd: add -f to rm

This commit is contained in:
light7734 2024-10-14 14:27:22 +03:30
parent b61b3f543d
commit 8d9d829758
Signed by: light7734
GPG Key ID: 37FDF7099B2AB7A7
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ steps:
- name: py - name: py
path: /opt/venv/ path: /opt/venv/
commands: commands:
- rm -rv ./build - rm -rvf ./build
- export CC=$(which gcc) - export CC=$(which gcc)
- export CXX=$(which g++) - export CXX=$(which g++)
@ -93,7 +93,7 @@ steps:
- name: py - name: py
path: /opt/venv/ path: /opt/venv/
commands: commands:
- rm -rv ./build - rm -rvf ./build
- export CC=$(which clang) - export CC=$(which clang)
- export CXX=$(which clang++) - export CXX=$(which clang++)