Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions post-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo ">>>Running post-build.sh"
#!/bin/bash

# Create dist branch if it doesn't exist already
if! git show-ref --verify --quiet refs/heads/dist; then
if ! git show-ref --verify --quiet refs/heads/dist; then
# Create the dist branch if it doesn't exist
git branch dist
fi
Expand All @@ -37,4 +37,4 @@ if [[ -n $(git status --porcelain) ]]; then
git push origin dist
else
echo "No changes to commit"
fi
fi
Loading