Ticket #204 (closed defect: invalid)
Spaces in username causes cabal errors
| Reported by: | egwor | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | (none-specified) | Keywords: | cabal spaces |
| Cc: |
Description
Hopefully I've come to the right place!
Issue
pwd /Users/egwor (new)
Since there's a space in the directory name there's an issue when trying to run cabal update
cabal update /usr/bin/cabal: line 115: [: /Users/egwor: binary operator expected
Looking at the code, should the ${cabal_config} be in inverted commas??
112 CONFIG_END
113 fi
114
115 if [ \! -e ${cabal_config} ]
116 then
changes to
112 CONFIG_END
113 fi
114
115 if [ \! -e "${cabal_config}" ]
116 then
Change History
Note: See
TracTickets for help on using
tickets.
