Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: crystal-lang/crystal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 599d68a17c38
Choose a base ref
...
head repository: crystal-lang/crystal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8e622b166e08
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 9, 2016

  1. bin/crystal fix for cd stdout

    RX14 committed Jul 9, 2016
    Copy the full SHA
    933d07c View commit details
  2. Merge pull request #2971 from RX14/fix-bin/crystal

    Fix bin/crystal in the case of stdout
    Ary Borenszweig authored Jul 9, 2016
    Copy the full SHA
    8e622b1 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 bin/crystal
2 changes: 1 addition & 1 deletion bin/crystal
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@ _canonicalize_file_path() {
local dir file
dir=$(dirname -- "$1")
file=$(basename -- "$1")
(cd "$dir" 2>/dev/null && printf '%s/%s\n' "$(pwd -P)" "$file")
(cd "$dir" 2>/dev/null >/dev/null && printf '%s/%s\n' "$(pwd -P)" "$file")
}

##############################################################################