mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
8 lines
147 B
Bash
Executable File
8 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
# Get hurl source version
|
|
VERSION="$(grep '^version' packages/hurl/Cargo.toml | cut -f2 -d'"')"
|
|
echo "${VERSION}"
|
|
|