You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at the output, I suspect that rattler-build generates a build_env.bat script and use call on it without appropriate quotes:
│ ╭─ Running build script
│ │ %SRC_DIR%>IF "" == "" (
│ │ 'C:\Users\Me' n’est pas reconnu en tant que commande interne
│ │ ou externe, un programme exécutable ou un fichier de commandes.
│ │
│ │ call %SRC_DIR%\build_env.bat
│ │ )
The french sentence says that C:\Users\Me is not recognized as an executable. Probably %SRC_DIR%\build_env.bat is interpreted as "C:\Users\Me" "Myself\dev\output\...\build_env.bat" instead of "C:\Users\Me Myself\dev\output\...\build_env.bat". But I am not familiar at all with Windows.
The text was updated successfully, but these errors were encountered:
I installed rattler-build 0.31.0 via Pixi.
I used the recipe located here
In PowerShell, the following command fail:
But the following one is working:
Looking at the output, I suspect that rattler-build generates a
build_env.bat
script and usecall
on it without appropriate quotes:The french sentence says that
C:\Users\Me
is not recognized as an executable. Probably%SRC_DIR%\build_env.bat
is interpreted as"C:\Users\Me" "Myself\dev\output\...\build_env.bat"
instead of"C:\Users\Me Myself\dev\output\...\build_env.bat"
. But I am not familiar at all with Windows.The text was updated successfully, but these errors were encountered: