Skip to content

Conversation

@matejko0077
Copy link

Validate the tools we need

  | if [[ ! -x $(which sha1sum) ]]; then
  | error "Missing tool: sha1sum (Linux: apt-get install coreutils; Mac: port install md5sha1sum)"
  | fi
  |  
  | # Parse input params
  | OUT="$1"
  | [[ -z "$OUT" ]] && error "Missing output.xml name."
  | shift
  |  
  | # Get the schema type. Must be either "repository" or "addon".
  | SCHEMA="$1"
  | [[ ! -f "$SCHEMA" ]] && error "Invalid XML schema name: $SCHEMA."
  | shift
  |  
  | # Get XML:NS for SDK from the schema
  | # This will be something like "http://schemas.android.com/sdk/android/addon/3"
  | XMLNS=$(sed -n '/xmlns:sdk="/s/."(.)"./\1/p' "$SCHEMA")
  | [[ -z "$XMLNS" ]] && error "Failed to find xmlns:sdk in $SCHEMA."
  | echo "## Using xmlns:sdk=$XMLNS"
  |  
  | # Extract the schema version number from the XMLNS, e.g. it would extract "3"
  | XSD_VERSION="${XMLNS##
/}"
  |  
 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants