mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
327 B
Bash
Executable File
20 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd `dirname $0`
|
|
|
|
source upstream.info
|
|
|
|
rm -rf src
|
|
git clone "$UPSTREAM_REPO" src
|
|
cd src
|
|
git checkout "$UPSTREAM_COMMIT"
|
|
autoconf
|
|
git describe --long --abbrev=40 > VERSION
|
|
rm -rf .git .gitignore autom4te.cache
|
|
cd ..
|
|
hg addremove -q src
|
|
|
|
echo "jemalloc has now been updated. Don't forget to run hg commit!"
|