This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
29
unikernel/duniverse/dune_/vendor/update-uutf.sh
vendored
Executable file
29
unikernel/duniverse/dune_/vendor/update-uutf.sh
vendored
Executable file
|
|
@ -0,0 +1,29 @@
|
|||
#!/bin/bash
|
||||
|
||||
version=8474b2a29c4cb9cbf356006612c7b2b97e9c4087
|
||||
|
||||
set -e -o pipefail
|
||||
|
||||
TMP="$(mktemp -d)"
|
||||
trap "rm -rf $TMP" EXIT
|
||||
|
||||
PACKAGE=uutf
|
||||
|
||||
rm -rf $PACKAGE
|
||||
mkdir -p $PACKAGE/src
|
||||
|
||||
(
|
||||
cd $TMP
|
||||
git clone https://github.com/dbuenzli/$PACKAGE.git
|
||||
cd $PACKAGE
|
||||
git checkout $version
|
||||
cd src
|
||||
)
|
||||
|
||||
SRC=$TMP/$PACKAGE
|
||||
|
||||
cp -v $SRC/LICENSE.md $PACKAGE
|
||||
cp -v $SRC/src/*.{ml,mli} $PACKAGE/
|
||||
|
||||
git checkout $PACKAGE/dune
|
||||
git add -A .
|
||||
Loading…
Add table
Add a link
Reference in a new issue