summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-24 18:15:50 +0100
committerwm4 <wm4@nowhere>2013-11-24 18:28:20 +0100
commit71ad7847e18339994ce5a71f4b0a7ee124224606 (patch)
treee1578d692be3a8059b0acd6ec98ad448d2299201
parent3b875eb003dd1fe35d332c3ea57914151ee8c300 (diff)
downloadmpv-build-71ad7847e18339994ce5a71f4b0a7ee124224606.tar.bz2
mpv-build-71ad7847e18339994ce5a71f4b0a7ee124224606.tar.xz
Remove force-head script
This is now done by ./update --master
-rw-r--r--README.rst2
-rw-r--r--force-head12
2 files changed, 1 insertions, 13 deletions
diff --git a/README.rst b/README.rst
index 30da11f..1cd1536 100644
--- a/README.rst
+++ b/README.rst
@@ -130,7 +130,7 @@ The following command can be used to delete all local changes, and to checkout
the current master versions for all parts (libass, ffmpeg, mpv, as well as
mpv-build itself):
- sh ./force-head
+ ./update --master
All local modifications are overwritten (including changes to the scripts),
and git master versions are checked out. Breakages/bugs are to be expected,
diff --git a/force-head b/force-head
deleted file mode 100644
index 4608ea2..0000000
--- a/force-head
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-update_master() {
- git fetch && git checkout -f origin/master
-}
-
-update_master
-( cd fribidi && update_master ; )
-( cd libass && update_master ; )
-( cd ffmpeg && update_master ; )
-( cd mpv && update_master ; )
-