File tree 5 files changed +75
-9
lines changed
5 files changed +75
-9
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,15 @@ array::pop() {
9
9
unset " arr[-1]"
10
10
}
11
11
12
+ # array::from_string some_array " " "a b c"
13
+ array::from_string () {
14
+ local output_var=$1
15
+ local split_by=${2:- $' \n ' }
16
+
17
+ mapfile -t -d " $split_by " " $output_var "
18
+ }
19
+
20
+ # array::contains "find_me" "${array[@]}"
12
21
array::contains () {
13
22
local item=" $1 "
14
23
shift
Original file line number Diff line number Diff line change @@ -23,8 +23,7 @@ develop::lint() {
23
23
24
24
develop::is_in_dev_mode () {
25
25
local dir=$1
26
- if ! git::is_git_repo " $dir " || ! git::is_dirty " $dir " ; then
27
- # we are not in git or git ins't dirty, then we run in production mode
26
+ if git::is_git_repo " $dir " && git::is_dirty " $dir " ; then
28
27
return 0
29
28
fi
30
29
return 1
Original file line number Diff line number Diff line change @@ -44,6 +44,29 @@ dialog::menu() {
44
44
return 1
45
45
}
46
46
47
+ dialog::select_from_array () {
48
+ local msg=$1
49
+ local -n _list=$2
50
+
51
+ local order=()
52
+ local -A menu
53
+ local line
54
+ local n=0
55
+ local index
56
+ for line in " ${_list[@]} " ; do
57
+ index=" $( echo " $line " | grep -o ' [0-9A-Za-z]' | head -n1) $n "
58
+ order+=( " $index " )
59
+ menu[$index ]=" $line "
60
+ n=$(( n+ 1 ))
61
+ done
62
+ if dialog::menu " $msg " menu order 0 60; then
63
+ # shellcheck disable=SC2034
64
+ _output=" ${menu[$(dialog::result)]} "
65
+ return 0
66
+ fi
67
+ return 1
68
+ }
69
+
47
70
dialog::simple_list_select () {
48
71
local msg=$1
49
72
local list=$2
@@ -52,9 +75,11 @@ dialog::simple_list_select() {
52
75
local -A menu
53
76
local line
54
77
local n=0
78
+ local index
55
79
while IFS= read -r line; do
56
- order+=( " $n " )
57
- menu[$n ]=" $line "
80
+ index=" $( echo " $line " | grep -o ' [0-9A-Za-z]' | head -n1) $n "
81
+ order+=( " $index " )
82
+ menu[$index ]=" $line "
58
83
n=$(( n+ 1 ))
59
84
done < <( echo " $list " )
60
85
if dialog::menu " $msg " menu order 0 60; then
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ fetch::verify() {
36
36
local sha=$1
37
37
local file=$2
38
38
local actual
39
- actual=$( sha256sum " $file " | awk ' {print $1}' )
39
+ actual=$( sha256sum " $file " | gawk ' {print $1}' )
40
40
if [ " $sha " != " $actual " ]; then
41
41
log::panic " Sha256 does not match. Expected ${sha} but got ${actual} "
42
42
fi
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ import exec
3
4
import dialog
4
5
5
6
git::_git () {
@@ -11,6 +12,25 @@ git::_git() {
11
12
) || return 1
12
13
}
13
14
15
+ git::clone () {
16
+ local path=$1
17
+ local repo=$2
18
+
19
+ exec::silent git::_git " $path " clone " $repo " .
20
+ }
21
+
22
+ git::push_all () {
23
+ local path=$1
24
+
25
+ exec::silent git::_git " $path " push --all
26
+ }
27
+
28
+ git::push_tags () {
29
+ local path=$1
30
+
31
+ exec::silent git::_git " $path " push --tags
32
+ }
33
+
14
34
git::is_git_repo () {
15
35
local path=$1
16
36
@@ -24,19 +44,32 @@ git::is_dirty() {
24
44
return 1
25
45
}
26
46
27
- git::: tag () {
47
+ git::tag () {
28
48
local path=$1
29
49
local sha=$2
30
50
local tag=$3
31
51
local msg=$4
32
52
33
53
if [ -n " $msg " ]; then
34
- git::_git " $path " -m " $msg " " $tag " " $sha "
54
+ git::_git " $path " tag -m " $msg " " $tag " " $sha "
35
55
else
36
- git::_git " $path " " $tag " " $sha "
56
+ git::_git " $path " tag " $tag " " $sha "
37
57
fi
38
58
}
39
59
60
+ git::list_tags () {
61
+ local path=$1
62
+
63
+ git::_git " $path " tag -l
64
+ }
65
+
66
+ git::is_object_exists () {
67
+ local path=$1
68
+ local sha=$2
69
+
70
+ git::_git " $path " show -q " $sha " & > /dev/null || return 1
71
+ }
72
+
40
73
git::tag2commit_ref () {
41
74
local path=$1
42
75
local tag=$2
@@ -77,7 +110,7 @@ git::clone_progress() {
77
110
(
78
111
dialog::progress_msg " Cloning $repo_display "
79
112
# There are 4 passes with progress when clonning git repo, last awk command make every 100 worth 25%
80
- git clone " $repo " " $path " --progress 2>&1 | stdbuf -i0 -o0 -e0 tr ' \r' ' \n' | stdbuf -i0 -o0 -e0 grep -o " [0-9]\{1,2 \}\%" | stdbuf -i0 -o0 -e0 grep -o ' [0-9]* ' | stdbuf -i0 -o0 -e0 awk " BEGIN{p=0;x=0} {if(\$ 1 < p) {x+=25;print x} else {print x+(\$ 1/4)};p=\$ 1 }"
113
+ git clone " $repo " " $path " --progress 2>&1 | stdbuf -i0 -oL -eL tr ' \r' ' \n' | stdbuf -oL -eL grep -o " [0-9]\{1,3 \}\%" | stdbuf -eL sed ' s/%//g ' | stdbuf -oL -eL gawk " BEGIN{p=0;x=0} {if(\$ 1 < p) {x+=25;print x} else {print x+(\$ 1/4)};p=\$ 1 }"
81
114
) | dialog::progress " git clone" 8 80
82
115
if ! [ -d " $path /.git" ]; then
83
116
dialog::msg " Failed to clone $repo "
You can’t perform that action at this time.
0 commit comments