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
Copy file name to clipboardExpand all lines: utils/windows-installer/pixi_installer.nsi
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -214,6 +214,16 @@ Function RepositoryPageLeave
214
214
# Get the directory
215
215
${NSD_GetText}$DirRequest$REPO_DIR
216
216
217
+
# Check for spaces in path (causes issues with Snakemake)
218
+
Push$REPO_DIR
219
+
Call CheckForSpaces
220
+
Pop$0
221
+
${If}$0>0
222
+
MessageBoxMB_OK|MB_ICONEXCLAMATION \
223
+
"The repository path contains spaces, which will cause problems with Snakemake.$\n$\nPlease choose a path without spaces.$\n$\nCurrent path: $REPO_DIR"
224
+
Abort
225
+
${EndIf}
226
+
217
227
# Store in registry for later use by launcher scripts
0 commit comments