Try and make zsh complain less

My turn to make "this cant possibly break" changes to the scripts.
This commit is contained in:
Zach Brown 2018-10-24 12:35:42 -04:00
parent b26af23d2d
commit 97960c6f28
No known key found for this signature in database
GPG Key ID: CC9DA35FC5450B76
3 changed files with 3 additions and 3 deletions

2
paper
View File

@ -199,7 +199,7 @@ unset -f color
unset -f colorend
unset -f paperstash
unset -f paperunstash
if [ "$failed" == "1" ]; then
if [[ "$failed" == "1" ]]; then
unset failed
false
else

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
gitcmd="git -c commit.gpgsign=false"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
if [ -z "$1" ]; then
echo "$0 <prID>"
exit 1;