|
|
|
|
|
by nickster
1321 days ago
|
|
In our software development we tag a git branch and code gets compiled and deployed and we would like to synchronize those systems. The scripts might involve a change to how a user is added to the system and another might be a change for how a user is updated. The "update user" script cannot be deployed until the "add user" script is deployed. |
|
Your version control and deployment processes should move your applications from one working state to another working state. Temporal runtime dependencies such as "A must run before B" should get handled at run time, either by making A execute B when it successfully finishes, or writing a higher-level script that runs them in order only if both exist.