Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try windows without removing ripgrep #1

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions recipe/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

WIN = platform.system() == "Windows"
INSTALL_SCRIPT = "verapdf-install.bat" if WIN else "verapdf-install"
RG_PATH = Path(r"C:\Miniforge\Library\bin\rg.exe")

SRC_DIR = Path(os.environ["SRC_DIR"])
PKG_VERSION = os.environ["PKG_VERSION"]
Expand Down Expand Up @@ -110,12 +109,6 @@ def clean():
print("... cleaning", path, flush=True)
shutil.rmtree(path)

if CI and WIN and RG_PATH.exists():
print(
"... removing ripgrep for https://github.com/conda/conda-build/issues/4357"
)
RG_PATH.unlink()


def main() -> int:
build()
Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source:
sha256: b8bf0b00fd789ef8d8548d2eeb7e83194db394d9f1be741f2d0ef1d62bff50c6

build:
number: 0
number: 1
ignore_run_exports:
- python
- python_abi
Expand Down
Loading