Skip to content

Commit f1111be

Browse files
committed
fix path to pull script
1 parent 39a5e06 commit f1111be

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.d4g-tools/deploy/pull/pull_cron.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,9 @@ parse_params() {
100100
DEBUG="false"
101101
RUN_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
102102
SOURCE=$(dirname "$RUN_DIR")
103-
GITHUB_TOKEN=""
104103
REPOSITORY_NAME=""
105104
BRANCH="main"
106-
DEPLOY_SCRIPT="${SOURCE}/.d4g-tools/deploy/pull/pull.sh"
105+
DEPLOY_SCRIPT="${SOURCE}/pull/pull.sh"
107106

108107
while :; do
109108
case "${1-}" in
@@ -113,9 +112,6 @@ parse_params() {
113112
-v | --verbose)
114113
DEBUG="true"
115114
;;
116-
--github-token=*)
117-
GITHUB_TOKEN="${1#*=}"
118-
;;
119115
--repository-name=*)
120116
REPOSITORY_NAME="${1#*=}"
121117
REPO_CANONICAL_NAME=$(echo $REPOSITORY_NAME | tr '/' '_')

0 commit comments

Comments
 (0)