alpha
Login
or
Join now
j3s.sh
/
dotfiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
my dotz
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
hack git conf, posix chtf
author
Jes Olson
date
4 years ago
(Aug 2, 2021, 12:40 PM -0500)
commit
ce524716
ce5247160b5b538465646df938ae42f2407e61bd
parent
d90579b8
d90579b825a3b011b81bb5ed69409708850b31d2
+4
-10
2 changed files
Expand all
Collapse all
Unified
Split
.config
git
config
bin
chtf
+2
-8
.config/git/config
Reviewed
···
31
31
[changelog]
32
32
format = * %s [%an]
33
33
[user]
34
34
-
name = j3s
35
35
-
email = j3s@c3f.net
36
36
-
[sendemail]
37
37
-
smtpserver = smtp.migadu.com
38
38
-
smtpuser = j3s@c3f.net
39
39
-
smtpencryption = tls
40
40
-
smtpserverport = 465
41
41
-
annotate = yes
34
34
+
name = Jes Olson
35
35
+
email = jolson@digitalocean.com
42
36
[pull]
43
37
ff = only
44
38
[includeIf "gitdir:~/git/"]
+2
-2
bin/chtf
Reviewed
···
9
9
tf_link_name="${HOME}/bin/terraform"
10
10
11
11
# make some os assumptions
12
12
-
if [ $(uname) == "Linux" ]; then
12
12
+
if [ "$(uname)" = "Linux" ]; then
13
13
os="linux"
14
14
else
15
15
os="Darwin"
···
30
30
# download tf version if not found
31
31
printf "terraform version not found. downloading...\n"
32
32
dl="https://releases.hashicorp.com/terraform/${tf_version}/terraform_${tf_version}_${os}_amd64.zip"
33
33
-
printf "downloading ${dl}\n"
33
33
+
printf "downloading %s\n" "$dl"
34
34
curl -L --output /tmp/tf.zip "$dl"
35
35
unzip /tmp/tf.zip -d /tmp
36
36
mv /tmp/terraform "${tf_install_dir}/${tf_version}"