mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Make the grafting script more idi^Wuser-proof
Insist on being run from the project root and pre-create possibly missing directories.
This commit is contained in:
parent
0281f732ab
commit
aaac5e2047
@ -9,15 +9,22 @@ if [ -z "`which wget 2>/dev/null`" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ -d .git ] && cd .git
|
[ "$GIT_DIR" ] || GIT_DIR=.git
|
||||||
|
if ! [ -d "$GIT_DIR" ]; then
|
||||||
|
echo "Error: You must run this from the project root (or set GIT_DIR to your .git directory)." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
cd "$GIT_DIR"
|
||||||
|
|
||||||
echo "[grafthistory] Downloading the history"
|
echo "[grafthistory] Downloading the history"
|
||||||
|
mkdir -p objects/pack
|
||||||
cd objects/pack
|
cd objects/pack
|
||||||
wget -c http://elinks.or.cz/elinks-history.git/objects/pack/pack-0d6c5c67aab3b9d5d9b245da5929c15d79124a48.idx
|
wget -c http://elinks.or.cz/elinks-history.git/objects/pack/pack-0d6c5c67aab3b9d5d9b245da5929c15d79124a48.idx
|
||||||
wget -c http://elinks.or.cz/elinks-history.git/objects/pack/pack-0d6c5c67aab3b9d5d9b245da5929c15d79124a48.pack
|
wget -c http://elinks.or.cz/elinks-history.git/objects/pack/pack-0d6c5c67aab3b9d5d9b245da5929c15d79124a48.pack
|
||||||
|
|
||||||
echo "[grafthistory] Setting up the grafts"
|
echo "[grafthistory] Setting up the grafts"
|
||||||
cd ../..
|
cd ../..
|
||||||
|
mkdir -p info
|
||||||
# master
|
# master
|
||||||
echo 0f6d4310ad37550be3323fab80456e4953698bf0 06135dc2b8bb7ed2e441305bdaa82048396de633 >>info/grafts
|
echo 0f6d4310ad37550be3323fab80456e4953698bf0 06135dc2b8bb7ed2e441305bdaa82048396de633 >>info/grafts
|
||||||
# REL_0_10
|
# REL_0_10
|
||||||
|
Loading…
Reference in New Issue
Block a user