mirror of
https://github.com/google/nomulus.git
synced 2025-04-29 03:27:51 +02:00
* An automated rollback tool for Nomulus A tool that directs traffic between deployed versions. It handles the conversion between Nomulus tags and AppEngine versions, executes schema compatibility tests, ensures that steps are executed in the correct order, and updates deployment records appropriately.
5 lines
116 B
Bash
Executable file
5 lines
116 B
Bash
Executable file
#!/bin/sh
|
|
# Wrapper for rollback_tool.py.
|
|
cd $(dirname $0)
|
|
python3 ./release/rollback/rollback_tool.py "$@"
|
|
exit $?
|