Skip to content

Commit

Permalink
Version 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gdarko committed Sep 24, 2024
1 parent 636d41f commit 429534f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions scripts/release_make.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
#! /bin/bash

# Requirement checking
for cmd in zip unzip svn git
do
if ! command -v "$cmd" 2>&1 >/dev/null
then
echo "Error: <$cmd> could not be found"
exit 1
fi
done

# A modification of Dean Clatworthy's deploy script at: https://github.com/deanc/wordpress-plugin-git-svn
# The difference is that this script lives in the plugin's git repo & doesn't require an existing SVN repo.

Expand Down

0 comments on commit 429534f

Please sign in to comment.