8 lines
98 B
Bash
Executable File
8 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit
|
|
|
|
echo "$(head -n 1 BUMPED_VERSION)"
|
|
|
|
# Usage
|
|
# $ get-bumped-version.sh
|