Skip to content

Commit 602d2e8

Browse files
committed
fix: correct syntax error in deployment workflow for repository existence check
1 parent 86a1ded commit 602d2e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Ensure Repository Exists
2121
run: |
22-
if [ ! -d "$DEPLOY_PATH"]; then
22+
if [ ! -d "$DEPLOY_PATH" ]; then
2323
git clone https://x-access-token:${GH_PAT}@github.com/SymonMuchemi/DevCamper-API.git $DEPLOY_PATH
2424
fi
2525

0 commit comments

Comments
 (0)