mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-22 05:09:09 +02:00
8 lines
165 B
Bash
8 lines
165 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
MAJOR_VERSION=$(echo "$KAFKA_VERSION" | cut -d. -f1)
|
||
|
export MAJOR_VERSION
|
||
|
|
||
|
MINOR_VERSION=$(echo "$KAFKA_VERSION" | cut -d. -f2)
|
||
|
export MINOR_VERSION
|