This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
27
unikernel/duniverse/dune_/vendor/update-notty.sh
vendored
Executable file
27
unikernel/duniverse/dune_/vendor/update-notty.sh
vendored
Executable 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 .
|
||||
Loading…
Add table
Add a link
Reference in a new issue