-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into snyk-fix-5ef3afe3fbfad34ca892e17f8d68fd7a
- Loading branch information
Showing
713 changed files
with
20,414 additions
and
5,287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,18 @@ | |
ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null | ||
|
||
# Clone the repository | ||
branch=$(git rev-parse --abbrev-ref HEAD) | ||
if [ -z "${branch}" ]; then | ||
echo "No branch checked out" | ||
exit 1 | ||
fi | ||
|
||
git remote add github [email protected]:/blacklight/platypush.git | ||
git pull --rebase github "$(git branch | head -1 | awk '{print $2}')" || echo "No such branch on Github" | ||
|
||
if (( "$branch" == "master" )); then | ||
git pull --rebase github "${branch}" || echo "No such branch on Github" | ||
fi | ||
|
||
# Push the changes to the GitHub mirror | ||
git push --all -v github | ||
git push -f --all -v github | ||
git push --tags -v github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
``procedures`` | ||
============== | ||
|
||
.. automodule:: platypush.plugins.procedures | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
# see https://git.platypush.tech/platypush/platypush/issues/399 | ||
when = hook | ||
|
||
__version__ = '1.2.2' | ||
__version__ = '1.3.1' | ||
__author__ = 'Fabio Manganiello <[email protected]>' | ||
__all__ = [ | ||
'Application', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.