mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
Try and make zsh complain less
My turn to make "this cant possibly break" changes to the scripts.
This commit is contained in:
parent
a6fb2b44fa
commit
4bc185d0d7
3 changed files with 3 additions and 3 deletions
2
paper
2
paper
|
@ -199,7 +199,7 @@ unset -f color
|
||||||
unset -f colorend
|
unset -f colorend
|
||||||
unset -f paperstash
|
unset -f paperstash
|
||||||
unset -f paperunstash
|
unset -f paperunstash
|
||||||
if [ "$failed" == "1" ]; then
|
if [[ "$failed" == "1" ]]; then
|
||||||
unset failed
|
unset failed
|
||||||
false
|
false
|
||||||
else
|
else
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
gitcmd="git -c commit.gpgsign=false"
|
gitcmd="git -c commit.gpgsign=false"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
echo "$0 <prID>"
|
echo "$0 <prID>"
|
||||||
exit 1;
|
exit 1;
|
||||||
|
|
Loading…
Reference in a new issue