Ignore unbound variable

This commit is contained in:
Brett Logan 2022-02-22 10:34:16 -05:00
parent 6b23c0aab1
commit 5a6f3796e1
No known key found for this signature in database
GPG key ID: 52ED7D1F56850EE6
2 changed files with 2 additions and 0 deletions

View file

@ -31,6 +31,7 @@ if [[ $(git status --porcelain) ]]; then
# Open pull request # Open pull request
echo "Opening pull request..." echo "Opening pull request..."
# shellcheck disable=SC2154
echo "${token}" | gh auth login --with-token echo "${token}" | gh auth login --with-token
gh pr create --title "Weekly NPM Updates" --body "Updates NPM dependencies" --base master --head "npm_deps_${id}" gh pr create --title "Weekly NPM Updates" --body "Updates NPM dependencies" --base master --head "npm_deps_${id}"
else else

View file

@ -71,6 +71,7 @@ if [[ $(git status --porcelain) ]]; then
# Open pull request # Open pull request
echo "Opening pull request..." echo "Opening pull request..."
# shellcheck disable=SC2154
echo "${token}" | gh auth login --with-token echo "${token}" | gh auth login --with-token
gh pr create --title "Weekly Python Updates" --body "Updates Python dependencies" --base master --head "python_deps_${id}" gh pr create --title "Weekly Python Updates" --body "Updates Python dependencies" --base master --head "python_deps_${id}"
else else