summaryrefslogtreecommitdiff
path: root/patcher.sh
diff options
context:
space:
mode:
authorSrikant Patnaik2015-02-11 12:21:34 +0530
committerSrikant Patnaik2015-02-11 12:21:34 +0530
commit0b1a6c0dc9a14c600e778320248a9c1247543f15 (patch)
treefff8e3dab2658cfdb8a443c3ec7fb14234ce7fba /patcher.sh
parent48ae31bf0ec17cb8bb54b57279bb1f1f2679fcee (diff)
downloadFOSSEE-netbook-patcher-AudioMic-1.tar.gz
FOSSEE-netbook-patcher-AudioMic-1.tar.bz2
FOSSEE-netbook-patcher-AudioMic-1.zip
temporary commit as afraid of git stash :(AudioMic-1
Diffstat (limited to 'patcher.sh')
-rwxr-xr-xpatcher.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/patcher.sh b/patcher.sh
index 22d1b4d..27e9aef 100755
--- a/patcher.sh
+++ b/patcher.sh
@@ -12,6 +12,7 @@ all_commits_one_liner_with_date=all_commits_one_liner_with_date.txt
all_commits_dates_with_file_paths=all_commits_dates_with_file_paths.txt
past_applied_commits=past_applied_commits.txt
local_updates=local_updates
+updated_file=updates.txt
INET_AVAILABLE=0
@@ -33,9 +34,9 @@ function clean_up() {
[ -d $local_updates ] && rm -rf $local_updates
}
-#The for loop may break in most of the time, unless there is an error in fossee.in
+
function check_internet() {
- #wait_for "Checking internet"
+ #wait_for internet
for each in {fossee.in,github.com};
do
wget $each/$testfile &> /dev/null
@@ -71,7 +72,7 @@ function format_list_updates() {
function select_updates() {
- #[ -f $past_applied_commits ] && paste $past_applied_commits
+ #[ -f $updated_file ] && paste $past_applied_commits
#menu $(cat $all_commits_dates_with_file_paths)
selected_update=$(menu -w 1000 -h 550 "$(cat $all_commits_dates_with_file_paths | \
cut -d ';' -f 1,2,3,4| tr ';' ' ' )" 2>&1)
@@ -83,13 +84,12 @@ function select_updates() {
do
mkdir -p $local_updates/$(dirname $each_file)
git show $selected_hash:$each_file>$local_updates/$each_file
+ echo $selected_hash;$files_in_selected_hash>>$updated_file
done
-}
-
-
+}
#Function calls