This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,27 @@
#!/bin/bash
version=83aad282853bc35564114db72b65a087acf82ccf
set -e -o pipefail
TMP="$(mktemp -d)"
trap "rm -rf $TMP" EXIT
rm -rf notty
mkdir -p notty/src
(
cd $TMP
git clone https://github.com/ocaml-dune/notty.git
cd notty
git checkout $version
)
SRC=$TMP/notty
cp -v $SRC/LICENSE.md notty/
cp -v -R $SRC/{src,src-unix} notty/
rm notty/src/*_top*.ml
git checkout notty/{src,src-unix}/dune
git add -A .