summaryrefslogtreecommitdiff
path: root/dhall/compare.fish
diff options
context:
space:
mode:
authorNadrieril2019-04-05 22:41:55 +0200
committerNadrieril2019-04-05 22:41:55 +0200
commit305a2ee7dcd3b3f61bf6877312e3c34767e8bc0c (patch)
tree2826e1a42035536796145d4411c8ddcc15b4c6c1 /dhall/compare.fish
parentf78af6d1e7f6c1dc39bde6cf97138327004ddb06 (diff)
Remove some unused files
Diffstat (limited to 'dhall/compare.fish')
-rwxr-xr-xdhall/compare.fish9
1 files changed, 0 insertions, 9 deletions
diff --git a/dhall/compare.fish b/dhall/compare.fish
deleted file mode 100755
index 154f06a..0000000
--- a/dhall/compare.fish
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env fish
-
-set dhall_hs_path ../dhall
-set dhall_hs $dhall_hs_path/.stack-work/install/**/bin/dhall
-set dhall_rs target/debug/dhall
-set input_file $argv[1]
-diff -u \
- --label "dhall-hs < $input_file" (eval $dhall_hs < $input_file ^&1 | psub) \
- --label "dhall-rs < $input_file" (eval $dhall_rs < $input_file ^&1 | psub)