[ocamlformat] Remove dead shim script

Reviewed By: katiejots, jvillard

Differential Revision: D15601755

fbshipit-source-id: 417b5d0a1
master
Josh Berdine 6 years ago committed by Facebook Github Bot
parent e45a05a574
commit 8910c0a20c

@ -1,27 +0,0 @@
#!/bin/bash
# Copyright (c) 2017-present, Facebook, Inc.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
# Run ocamlformat, installing the required version via opam if necessary.
set -x
set -e
TARGET_VERSION=$(grep version .ocamlformat | cut -d ' ' -f 2)
if [ -z $TARGET_VERSION ]
then
echo "Could not find .ocamlformat file containing version"
exit 1
fi
if [ ! -x "$(command -v ocamlformat)" ] ||
[ "$TARGET_VERSION" != "$(ocamlformat --version)" ]
then
opam install "ocamlformat.$TARGET_VERSION"
fi
ocamlformat "$@"
Loading…
Cancel
Save