my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

hack git conf, posix chtf

+4 -10
+2 -8
.config/git/config
··· 31 31 [changelog] 32 32 format = * %s [%an] 33 33 [user] 34 - name = j3s 35 - email = j3s@c3f.net 36 - [sendemail] 37 - smtpserver = smtp.migadu.com 38 - smtpuser = j3s@c3f.net 39 - smtpencryption = tls 40 - smtpserverport = 465 41 - annotate = yes 34 + name = Jes Olson 35 + email = jolson@digitalocean.com 42 36 [pull] 43 37 ff = only 44 38 [includeIf "gitdir:~/git/"]
+2 -2
bin/chtf
··· 9 9 tf_link_name="${HOME}/bin/terraform" 10 10 11 11 # make some os assumptions 12 - if [ $(uname) == "Linux" ]; then 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 - printf "downloading ${dl}\n" 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}"