This file contains hidden or 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
| #!/bin/sh | |
| # This script will update the specified version for all brands to | |
| # X.Y.Z, where X, Y and Z are input parameters specified by the user. | |
| # Example: `$ sh change_version.sh 1.0.0 2.1.0` | |
| if [ $# -lt 2 ]; then | |
| echo "2 arguments are expected" | |
| exit 1 | |
| fi |
OlderNewer