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

m2-filesystem: Fix fstab #10

Merged
merged 1 commit into from
Jul 3, 2024
Merged
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
8 changes: 6 additions & 2 deletions recipe/install_pkg.bat
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ if "%PKG_NAME%" == "m2-filesystem" (
REM conversions.
REM To prevent this we mount %LIBRARY_PREFIX%\bin to /conda_bin
REM see https://cygwin.com/cygwin-ug-net/using.html#mount-table
echo >> %LIBRARY_PREFIX%\etc\fstab
echo %LIBRARY_PREFIX:\=/%/bin /conda_bin ntfs auto >> %LIBRARY_PREFIX%\etc\fstab
setlocal EnableDelayedExpansion
set LF=^


REM Keep the 2 empty lines above so LF is set to linefeed character!
<nul (set/p=!LF!%LIBRARY_PREFIX:\=/%/bin /conda_bin ntfs auto!LF!) >> %LIBRARY_PREFIX%\etc\fstab || call;
mbargull marked this conversation as resolved.
Show resolved Hide resolved
)
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1765,7 +1765,7 @@ source:
folder: source-heimdal

build:
number: 3
number: 4
noarch: generic
error_overlinking: false

Expand Down