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

Fix rebar_file_utils module on Windows with MSYS #142

Closed
wants to merge 4 commits into from
Closed

Fix rebar_file_utils module on Windows with MSYS #142

wants to merge 4 commits into from

Commits on Oct 1, 2011

  1. rebar_utils:sh/2: remove bash invocation on Windows

    Currently rebar_utils:sh/2 will invoke all commands through bash.exe if
    found. Otherwise the command will be executed directly. Despite the fact
    that the caller cannot know if the command is executed with Unix or
    Windows semantics it leads to problems with MSYS's automatic path name
    translation.
    
    Therefore remove bash usage on Windows to get a consistent behavior and
    to avoid the peculiarities of MSYS's automatic path conversion. Instead
    use cmd.exe as its typically needed by most commands.
    jkloetzke committed Oct 1, 2011
    Configuration menu
    Copy the full SHA
    6b01ab7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c1e69f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8d2375a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50c06bf View commit details
    Browse the repository at this point in the history