From 36fab372257ed3bbeb6a027dfbfa5da9638385f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=8F=99=EC=A3=BC?= Date: Thu, 10 Sep 2020 20:23:58 +0900 Subject: [PATCH] Fix typo change function name "deoply" -> "deploy" @ ln45, 64 --- tools/deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/deploy.sh b/tools/deploy.sh index 4de390d..bdc6cd1 100755 --- a/tools/deploy.sh +++ b/tools/deploy.sh @@ -42,7 +42,7 @@ flush() { mv "$_backup_dir"/* . } -deoply() { +deploy() { git config --global user.name "GitHub Actions" git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" @@ -61,7 +61,7 @@ main() { init backup flush - deoply + deploy } main